File: parserGenericsInInterfaceDeclaration1.symbols

package info (click to toggle)
node-typescript 3.3.3333-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 324,548 kB
  • sloc: makefile: 6; sh: 3
file content (25 lines) | stat: -rw-r--r-- 1,072 bytes parent folder | download | duplicates (2)
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
=== tests/cases/conformance/parser/ecmascript5/Generics/parserGenericsInInterfaceDeclaration1.ts ===
interface I<T> {
>I : Symbol(I, Decl(parserGenericsInInterfaceDeclaration1.ts, 0, 0))
>T : Symbol(T, Decl(parserGenericsInInterfaceDeclaration1.ts, 0, 12))

   v: A<T>;
>v : Symbol(I.v, Decl(parserGenericsInInterfaceDeclaration1.ts, 0, 16))
>T : Symbol(T, Decl(parserGenericsInInterfaceDeclaration1.ts, 0, 12))

   f1<T>(): T;
>f1 : Symbol(I.f1, Decl(parserGenericsInInterfaceDeclaration1.ts, 1, 11))
>T : Symbol(T, Decl(parserGenericsInInterfaceDeclaration1.ts, 2, 6))
>T : Symbol(T, Decl(parserGenericsInInterfaceDeclaration1.ts, 2, 6))

   f2?<T>(): T;
>f2 : Symbol(I.f2, Decl(parserGenericsInInterfaceDeclaration1.ts, 2, 14))
>T : Symbol(T, Decl(parserGenericsInInterfaceDeclaration1.ts, 3, 7))
>T : Symbol(T, Decl(parserGenericsInInterfaceDeclaration1.ts, 3, 7))

   <T>(): void;
>T : Symbol(T, Decl(parserGenericsInInterfaceDeclaration1.ts, 4, 4))

   new <T>(): void;
>T : Symbol(T, Decl(parserGenericsInInterfaceDeclaration1.ts, 5, 8))
}