TypeScript/tests/cases/fourslash/codeFixSuperAfterThis.ts
Vladimir Matveev 2b10611fbf initial revision of infrastructure to produce text changes that uses existing node factory, formatter and printer (#14441)
initial revision of infrastructure to produce text changes that uses existing node factory, formatter and printer
2017-03-15 11:44:36 -07:00

15 lines
317 B
TypeScript

/// <reference path='fourslash.ts' />
////class Base{
////}
////class C extends Base{
//// private a:number;
//// constructor() {[|
//// this.a = 12;
//// super();
//// |]}
////}
verify.rangeAfterCodeFix(`
super();
this.a = 12;
`, /*includeWhiteSpace*/ true);