TypeScript/tests/cases/fourslash/codeFixUndeclaredPropertyNumericLiteral.ts
2017-02-14 18:10:21 -08:00

17 lines
300 B
TypeScript

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