TypeScript/tests/cases/fourslash/codeFixAddMissingMember3.ts
Nathan Shively-Sanders 2479c071f9 Update baselines
2017-05-01 11:42:22 -07:00

15 lines
323 B
TypeScript

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