File: cloduleStaticMembers.symbols

package info (click to toggle)
node-typescript 4.9.5%2Bds1-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 533,908 kB
  • sloc: javascript: 2,018,330; makefile: 7; sh: 1
file content (32 lines) | stat: -rw-r--r-- 1,193 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
31
32
=== tests/cases/compiler/cloduleStaticMembers.ts ===
class Clod {
>Clod : Symbol(Clod, Decl(cloduleStaticMembers.ts, 0, 0), Decl(cloduleStaticMembers.ts, 3, 1))

    private static x = 10;
>x : Symbol(Clod.x, Decl(cloduleStaticMembers.ts, 0, 12))

    public static y = 10;
>y : Symbol(Clod.y, Decl(cloduleStaticMembers.ts, 1, 26))
}
module Clod {
>Clod : Symbol(Clod, Decl(cloduleStaticMembers.ts, 0, 0), Decl(cloduleStaticMembers.ts, 3, 1))

    var p = Clod.x;
>p : Symbol(p, Decl(cloduleStaticMembers.ts, 5, 7))
>Clod.x : Symbol(Clod.x, Decl(cloduleStaticMembers.ts, 0, 12))
>Clod : Symbol(Clod, Decl(cloduleStaticMembers.ts, 0, 0), Decl(cloduleStaticMembers.ts, 3, 1))
>x : Symbol(Clod.x, Decl(cloduleStaticMembers.ts, 0, 12))

    var q = x;
>q : Symbol(q, Decl(cloduleStaticMembers.ts, 6, 7))

    var s = Clod.y;
>s : Symbol(s, Decl(cloduleStaticMembers.ts, 8, 7))
>Clod.y : Symbol(Clod.y, Decl(cloduleStaticMembers.ts, 1, 26))
>Clod : Symbol(Clod, Decl(cloduleStaticMembers.ts, 0, 0), Decl(cloduleStaticMembers.ts, 3, 1))
>y : Symbol(Clod.y, Decl(cloduleStaticMembers.ts, 1, 26))

    var t = y; 
>t : Symbol(t, Decl(cloduleStaticMembers.ts, 9, 7))
}