TypeScript/tests/cases/fourslash/codeFixAddMissingMember3.ts
Andy ecef2dc970 Improve testing of code fixes, and improve diagnostic messages (#18742)
* Improve testing of code fixes, and improve diagnostic messages

* Disambiguate `newFileContent` from `newRangeContent`
2017-09-26 15:16:29 -07:00

20 lines
361 B
TypeScript

/// <reference path='fourslash.ts' />
////class C {
//// static method() {
//// this.foo = 10;
//// }
////}
verify.codeFix({
description: "Declare static property 'foo'.",
index: 0,
// TODO: GH#18445
newFileContent: `class C {
static foo: number;\r
static method() {
this.foo = 10;
}
}`
});