TypeScript/tests/cases/fourslash/codeFixAddForgottenThis01.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

16 lines
285 B
TypeScript

/// <reference path='fourslash.ts' />
////class C {
//// foo: number;
//// constructor() {[|
//// foo = 10;
//// |]}
////}
verify.codeFix({
description: "Add 'this.' to unresolved variable.",
newRangeContent: `
this.foo = 10;
`
});