Another test case for rename in destructuring assignment

This commit is contained in:
Sheetal Nandi
2016-04-08 13:41:16 -07:00
parent 9e777306c7
commit 9e82646ac3

View File

@@ -0,0 +1,14 @@
/// <reference path='fourslash.ts' />
////interface I {
//// [|x|]: number;
////}
////var a: I;
////var x;
////({ [|x|]: x } = a);
let ranges = test.ranges()
for (let range of ranges) {
goTo.position(range.start);
verify.renameLocations(/*findInStrings*/ false, /*findInComments*/ false);
}