1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
/// <reference path='fourslash.ts'/>
////class Foo {
////}
////
////var x = class [|Foo|] {
//// doIt() {
//// return [|Foo|];
//// }
////
//// static doItStatically() {
//// return [|Foo|].y;
//// }
////}
////
////var y = class {
//// getSomeName() {
//// return Foo
//// }
////}
////var z = class Foo {}
let ranges = test.ranges()
for (let range of ranges) {
goTo.position(range.start);
verify.renameLocations(/*findInStrings*/ false, /*findInComments*/ false);
}
|