TypeScript/tests/cases/fourslash/renameDestructuringAssignmentNestedInForOf2.ts
2017-01-18 13:55:31 -08:00

20 lines
522 B
TypeScript

/// <reference path='fourslash.ts' />
////interface MultiRobot {
//// name: string;
//// skills: {
//// primary: string;
//// secondary: string;
//// };
////}
////let multiRobots: MultiRobot[], [|primary|]: string;
////for ({ skills: { primary: primaryA, secondary: secondaryA } } of multiRobots) {
//// console.log(primaryA);
////}
////for ({ skills: { [|primary|], secondary } } of multiRobots) {
//// console.log([|primary|]);
////}
verify.rangesAreRenameLocations();