File: declFilePrivateStatic.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 (30 lines) | stat: -rw-r--r-- 935 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
26
27
28
29
30
=== tests/cases/compiler/declFilePrivateStatic.ts ===
class C {
>C : Symbol(C, Decl(declFilePrivateStatic.ts, 0, 0))

    private static x = 1;
>x : Symbol(C.x, Decl(declFilePrivateStatic.ts, 0, 9))

    static y = 1;
>y : Symbol(C.y, Decl(declFilePrivateStatic.ts, 1, 25))

    private static a() { }
>a : Symbol(C.a, Decl(declFilePrivateStatic.ts, 2, 17))

    static b() { }
>b : Symbol(C.b, Decl(declFilePrivateStatic.ts, 4, 26))

    private static get c() { return 1; }
>c : Symbol(C.c, Decl(declFilePrivateStatic.ts, 5, 18))

    static get d() { return 1; }
>d : Symbol(C.d, Decl(declFilePrivateStatic.ts, 7, 40))

    private static set e(v) { }
>e : Symbol(C.e, Decl(declFilePrivateStatic.ts, 8, 32))
>v : Symbol(v, Decl(declFilePrivateStatic.ts, 10, 25))

    static set f(v) { }
>f : Symbol(C.f, Decl(declFilePrivateStatic.ts, 10, 31))
>v : Symbol(v, Decl(declFilePrivateStatic.ts, 11, 17))
}