TypeScript/tests/cases/fourslash/codeFixClassPropertyInitialization6.ts
Wenlu Wang 30a96ba335 add support of codefix for Strict Class Initialization (#21528)
* add support of add undefined type to propertyDeclaration

* add support of add Definite Assignment Assertions to propertyDeclaration

* add support of add Initializer to propertyDeclaration

* remove useless parameter

* fix PropertyDeclaration emit missing exclamationToken

* merge fixes and fix

* fix unnecessary type assert
2018-02-23 07:25:50 -08:00

15 lines
234 B
TypeScript

/// <reference path='fourslash.ts' />
// @strict: true
//// class T {
//// a: "1";
//// }
verify.codeFix({
description: `Add initializer to property 'a'`,
newFileContent: `class T {
a: "1" = "1";
}`,
index: 2
})