TypeScript/tests/cases/fourslash/renameParameterPropertyDeclaration5.ts

14 lines
402 B
TypeScript

/// <reference path='fourslash.ts'/>
//// class Foo {
//// constructor(protected [ [|protectedParam|] ]) {
//// let myProtectedParam = [|protectedParam|];
//// }
//// }
let ranges = test.ranges();
verify.assertRangesEmpty(ranges);
for (let range of ranges) {
goTo.position(range.start);
verify.renameLocations(/*findInStrings*/ false, /*findInComments*/ false);
}