1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
=== tests/cases/compiler/ClassDeclaration25.ts ===
interface IList<T> {
>IList : Symbol(IList, Decl(ClassDeclaration25.ts, 0, 0))
>T : Symbol(T, Decl(ClassDeclaration25.ts, 0, 16))
data(): T;
>data : Symbol(IList.data, Decl(ClassDeclaration25.ts, 0, 20))
>T : Symbol(T, Decl(ClassDeclaration25.ts, 0, 16))
next(): string;
>next : Symbol(IList.next, Decl(ClassDeclaration25.ts, 1, 14))
}
class List<U> implements IList<U> {
>List : Symbol(List, Decl(ClassDeclaration25.ts, 3, 1))
>U : Symbol(U, Decl(ClassDeclaration25.ts, 4, 11))
>IList : Symbol(IList, Decl(ClassDeclaration25.ts, 0, 0))
>U : Symbol(U, Decl(ClassDeclaration25.ts, 4, 11))
data(): U;
>data : Symbol(List.data, Decl(ClassDeclaration25.ts, 4, 35))
>U : Symbol(U, Decl(ClassDeclaration25.ts, 4, 11))
next(): string;
>next : Symbol(List.next, Decl(ClassDeclaration25.ts, 5, 14))
}
|