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

13 lines
263 B
TypeScript

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