TypeScript/tests/cases/fourslash/codeFixClassImplementClassAbstractGettersAndSetters.ts

41 lines
922 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 {
get a(): string {
throw new Error("Method not implemented.");
}
set a(newName: string) {
throw new Error("Method not implemented.");
}
get b(): number {
throw new Error("Method not implemented.");
}
set c(arg: string | number) {
throw new Error("Method not implemented.");
}
}`,
});