TypeScript/tests/cases/fourslash/codeFixClassImplementClassAbstractGettersAndSetters.ts

32 lines
628 B
TypeScript
Raw Normal View History

2016-11-29 21:33:20 +01:00
/// <reference path='fourslash.ts' />
////abstract class A {
//// abstract get a(): string;
//// abstract set a(newName: string);
////
//// abstract get b(): number;
////
//// abstract set c(arg: number | string);
////}
////
////class C implements A {}
verify.codeFix({
description: "Implement interface 'A'",
newFileContent:
`abstract class A {
abstract get a(): string;
abstract set a(newName: string);
abstract get b(): number;
abstract set c(arg: number | string);
}
2016-11-29 21:33:20 +01:00
2018-01-12 02:43:27 +01:00
class C implements A {
a: string;
b: number;
c: string | number;
}`,
});