TypeScript/tests/cases/fourslash/codeFixUndeclaredPropertyThisType.ts
2017-02-16 13:37:35 -08:00

18 lines
318 B
TypeScript

/// <reference path='fourslash.ts' />
//// [|class A {
//// constructor() {
//// this.mythis = this;
//// }
//// }|]
verify.rangeAfterCodeFix(`
class A {
mythis: this;
constructor() {
this.mythis = this;
}
}
`, /*includeWhiteSpace*/ false, /*errorCode*/ undefined, /*index*/ 0);