TypeScript/tests/cases/fourslash/codeFixUndeclaredPropertyThisType.ts

18 lines
318 B
TypeScript
Raw Normal View History

/// <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);