TypeScript/tests/cases/fourslash/renameParameterPropertyDeclaration3.ts
2015-12-16 16:06:55 -08:00

14 lines
416 B
TypeScript

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