File: unusedTypeParameterInMethod1.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-- 867 bytes parent folder | download | duplicates (5)
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/compiler/unusedTypeParameterInMethod1.ts ===
class A {
>A : Symbol(A, Decl(unusedTypeParameterInMethod1.ts, 0, 0))

    public f1<X, Y, Z>() {
>f1 : Symbol(A.f1, Decl(unusedTypeParameterInMethod1.ts, 0, 9))
>X : Symbol(X, Decl(unusedTypeParameterInMethod1.ts, 1, 14))
>Y : Symbol(Y, Decl(unusedTypeParameterInMethod1.ts, 1, 16))
>Z : Symbol(Z, Decl(unusedTypeParameterInMethod1.ts, 1, 19))

        var a: Y;
>a : Symbol(a, Decl(unusedTypeParameterInMethod1.ts, 2, 11))
>Y : Symbol(Y, Decl(unusedTypeParameterInMethod1.ts, 1, 16))

        var b: Z;
>b : Symbol(b, Decl(unusedTypeParameterInMethod1.ts, 3, 11))
>Z : Symbol(Z, Decl(unusedTypeParameterInMethod1.ts, 1, 19))

        a;
>a : Symbol(a, Decl(unusedTypeParameterInMethod1.ts, 2, 11))

        b;
>b : Symbol(b, Decl(unusedTypeParameterInMethod1.ts, 3, 11))
    }
}