File: collisionCodeGenModuleWithModuleChildren.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 (91 lines) | stat: -rw-r--r-- 4,224 bytes parent folder | download | duplicates (7)
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
=== tests/cases/compiler/collisionCodeGenModuleWithModuleChildren.ts ===
module M {
>M : Symbol(M, Decl(collisionCodeGenModuleWithModuleChildren.ts, 0, 0), Decl(collisionCodeGenModuleWithModuleChildren.ts, 6, 1), Decl(collisionCodeGenModuleWithModuleChildren.ts, 15, 1), Decl(collisionCodeGenModuleWithModuleChildren.ts, 24, 1), Decl(collisionCodeGenModuleWithModuleChildren.ts, 33, 1))

    export var x = 3;
>x : Symbol(x, Decl(collisionCodeGenModuleWithModuleChildren.ts, 1, 14))

    module m1 {
>m1 : Symbol(m1, Decl(collisionCodeGenModuleWithModuleChildren.ts, 1, 21))

        var M = 10;
>M : Symbol(M, Decl(collisionCodeGenModuleWithModuleChildren.ts, 3, 11))

        var p = x;
>p : Symbol(p, Decl(collisionCodeGenModuleWithModuleChildren.ts, 4, 11))
>x : Symbol(x, Decl(collisionCodeGenModuleWithModuleChildren.ts, 1, 14))
    }
}

module M {
>M : Symbol(M, Decl(collisionCodeGenModuleWithModuleChildren.ts, 0, 0), Decl(collisionCodeGenModuleWithModuleChildren.ts, 6, 1), Decl(collisionCodeGenModuleWithModuleChildren.ts, 15, 1), Decl(collisionCodeGenModuleWithModuleChildren.ts, 24, 1), Decl(collisionCodeGenModuleWithModuleChildren.ts, 33, 1))

    module m2 {
>m2 : Symbol(m2, Decl(collisionCodeGenModuleWithModuleChildren.ts, 8, 10))

        class M {
>M : Symbol(M, Decl(collisionCodeGenModuleWithModuleChildren.ts, 9, 15))
        }
        var p = x;
>p : Symbol(p, Decl(collisionCodeGenModuleWithModuleChildren.ts, 12, 11))
>x : Symbol(x, Decl(collisionCodeGenModuleWithModuleChildren.ts, 1, 14))

        var p2 = new M();
>p2 : Symbol(p2, Decl(collisionCodeGenModuleWithModuleChildren.ts, 13, 11))
>M : Symbol(M, Decl(collisionCodeGenModuleWithModuleChildren.ts, 9, 15))
    }
}

module M {
>M : Symbol(M, Decl(collisionCodeGenModuleWithModuleChildren.ts, 0, 0), Decl(collisionCodeGenModuleWithModuleChildren.ts, 6, 1), Decl(collisionCodeGenModuleWithModuleChildren.ts, 15, 1), Decl(collisionCodeGenModuleWithModuleChildren.ts, 24, 1), Decl(collisionCodeGenModuleWithModuleChildren.ts, 33, 1))

    module m3 {
>m3 : Symbol(m3, Decl(collisionCodeGenModuleWithModuleChildren.ts, 17, 10))

        function M() {
>M : Symbol(M, Decl(collisionCodeGenModuleWithModuleChildren.ts, 18, 15))
        }
        var p = x;
>p : Symbol(p, Decl(collisionCodeGenModuleWithModuleChildren.ts, 21, 11))
>x : Symbol(x, Decl(collisionCodeGenModuleWithModuleChildren.ts, 1, 14))

        var p2 = M();
>p2 : Symbol(p2, Decl(collisionCodeGenModuleWithModuleChildren.ts, 22, 11))
>M : Symbol(M, Decl(collisionCodeGenModuleWithModuleChildren.ts, 18, 15))
    }
}

module M { // shouldnt be _M
>M : Symbol(M, Decl(collisionCodeGenModuleWithModuleChildren.ts, 0, 0), Decl(collisionCodeGenModuleWithModuleChildren.ts, 6, 1), Decl(collisionCodeGenModuleWithModuleChildren.ts, 15, 1), Decl(collisionCodeGenModuleWithModuleChildren.ts, 24, 1), Decl(collisionCodeGenModuleWithModuleChildren.ts, 33, 1))

    module m3 {
>m3 : Symbol(m3, Decl(collisionCodeGenModuleWithModuleChildren.ts, 26, 10))

        interface M {
>M : Symbol(M, Decl(collisionCodeGenModuleWithModuleChildren.ts, 27, 15))
        }
        var p = x;
>p : Symbol(p, Decl(collisionCodeGenModuleWithModuleChildren.ts, 30, 11))
>x : Symbol(x, Decl(collisionCodeGenModuleWithModuleChildren.ts, 1, 14))

        var p2: M;
>p2 : Symbol(p2, Decl(collisionCodeGenModuleWithModuleChildren.ts, 31, 11))
>M : Symbol(M, Decl(collisionCodeGenModuleWithModuleChildren.ts, 27, 15))
    }
}

module M {
>M : Symbol(M, Decl(collisionCodeGenModuleWithModuleChildren.ts, 0, 0), Decl(collisionCodeGenModuleWithModuleChildren.ts, 6, 1), Decl(collisionCodeGenModuleWithModuleChildren.ts, 15, 1), Decl(collisionCodeGenModuleWithModuleChildren.ts, 24, 1), Decl(collisionCodeGenModuleWithModuleChildren.ts, 33, 1))

    module m4 {
>m4 : Symbol(m4, Decl(collisionCodeGenModuleWithModuleChildren.ts, 35, 10))

        module M {
>M : Symbol(M, Decl(collisionCodeGenModuleWithModuleChildren.ts, 36, 15))

            var p = x;
>p : Symbol(p, Decl(collisionCodeGenModuleWithModuleChildren.ts, 38, 15))
>x : Symbol(x, Decl(collisionCodeGenModuleWithModuleChildren.ts, 1, 14))
        }
    }
}