1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
/// <reference path='fourslash.ts' />
//// interface I {
//// x: T;
//// }
////
//// class C implements I { }
// 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.
// TODO: (aozgaa) Acknowledge other errors on class/implemented interface/extended abstract class.
// Should be verify.codeFixAvailable([]);
verify.codeFixAvailable([{ description: "Implement interface 'I'" }]);
|