TypeScript/tests/cases/fourslash/codeFixClassImplementClassMethodViaHeritage.ts
2017-03-13 09:18:40 -07:00

19 lines
297 B
TypeScript

/// <reference path='fourslash.ts' />
//// class C1 {
//// f1() {}
//// }
////
//// class C2 extends C1 {
////
//// }
////
//// class C3 implements C2 {[|
//// |]f2(){}
//// }
verify.rangeAfterCodeFix(`f1(): void{
throw new Error("Method not implemented.");
}
`);