TypeScript/tests/cases/fourslash/getOccurrencesClassExpressionStatic.ts
2015-07-15 00:32:14 +02:00

29 lines
705 B
TypeScript

/// <reference path='fourslash.ts' />
////let A = class Foo {
//// public static foo;
//// [|static|] a;
//// constructor(public y: string, private x: string) {
//// }
//// public method() { }
//// private method2() {}
//// public [|static|] static() { }
//// private [|static|] static2() { }
////}
////
////let B = class D {
//// static a;
//// constructor(private x: number) {
//// }
//// private static test() {}
//// public static test2() {}
////}
const ranges = test.ranges();
for (let r of ranges) {
goTo.position(r.start);
for (let range of ranges) {
verify.occurrencesAtPositionContains(range, false);
}
}