TypeScript/tests/cases/fourslash/codeFixClassImplementInterfaceUndeclaredSymbol.ts

20 lines
633 B
TypeScript
Raw Normal View History

2016-11-05 00:34:10 +01:00
/// <reference path='fourslash.ts' />
//// interface I {
//// x: T;
//// }
////
//// class C implements I { }
2016-11-05 00:34:10 +01:00
// T is not a declared symbol. There are a couple fixes:
// 1) Declare T.
// 2) Rename T to an existing symbol.
// 3) Make T a type parameter to I.
//
// In the latter two cases, it is premature to copy `x:T` into C.
// Since we can't guess the programmer's intent here, we do nothing.
2016-11-08 23:13:25 +01:00
// TODO: (aozgaa) Acknowledge other errors on class/implemented interface/extended abstract class.
// Should be verify.codeFixAvailable([]);
verify.codeFixAvailable([{ description: "Implement interface 'I'" }]);