TypeScript/tests/cases/fourslash/renameLocationsForClassExpression01.ts
Yui T 872fdcf444 Merge branch 'master' into completionListWithLocalName
Conflicts:
	tests/cases/fourslash/renameLocationsForClassExpression01.ts
2015-07-07 15:17:42 -07:00

27 lines
No EOL
537 B
TypeScript

/// <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);
}