TypeScript/tests/cases/fourslash/codeFixClassImplementClassMultipleSignatures2.ts

29 lines
935 B
TypeScript
Raw Normal View History

2016-12-07 04:46:08 +01:00
/// <reference path='fourslash.ts' />
////class A {
//// method(a: any, b: string): boolean;
//// method(a: string, b: number): Function;
//// method(a: string): Function;
//// method(a: string | number, b?: string | number): boolean | Function { return a + b as any; }
////}
////class C implements A { }
2016-12-07 04:46:08 +01:00
verify.codeFix({
description: "Implement interface 'A'",
newFileContent:
`class A {
2016-12-07 04:46:08 +01:00
method(a: any, b: string): boolean;
method(a: string, b: number): Function;
method(a: string): Function;
method(a: string | number, b?: string | number): boolean | Function { return a + b as any; }
}
2018-01-12 02:43:27 +01:00
class C implements A {
method(a: any, b: string): boolean;
method(a: string, b: number): Function;
method(a: string): Function;
method(a: string | number, b?: string | number): boolean | Function {
throw new Error("Method not implemented.");
}
}`,
});