File: collisionCodeGenModuleWithConstructorChildren.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 (48 lines) | stat: -rw-r--r-- 2,060 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
=== tests/cases/compiler/collisionCodeGenModuleWithConstructorChildren.ts ===
module M {
>M : Symbol(M, Decl(collisionCodeGenModuleWithConstructorChildren.ts, 0, 0), Decl(collisionCodeGenModuleWithConstructorChildren.ts, 6, 1), Decl(collisionCodeGenModuleWithConstructorChildren.ts, 13, 1))

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

    class c {
>c : Symbol(c, Decl(collisionCodeGenModuleWithConstructorChildren.ts, 1, 21))

        constructor(M, p = x) {
>M : Symbol(M, Decl(collisionCodeGenModuleWithConstructorChildren.ts, 3, 20))
>p : Symbol(p, Decl(collisionCodeGenModuleWithConstructorChildren.ts, 3, 22))
>x : Symbol(x, Decl(collisionCodeGenModuleWithConstructorChildren.ts, 1, 14))
        }
    }
}

module M {
>M : Symbol(M, Decl(collisionCodeGenModuleWithConstructorChildren.ts, 0, 0), Decl(collisionCodeGenModuleWithConstructorChildren.ts, 6, 1), Decl(collisionCodeGenModuleWithConstructorChildren.ts, 13, 1))

    class d {
>d : Symbol(d, Decl(collisionCodeGenModuleWithConstructorChildren.ts, 8, 10))

        constructor(private M, p = x) {
>M : Symbol(d.M, Decl(collisionCodeGenModuleWithConstructorChildren.ts, 10, 20))
>p : Symbol(p, Decl(collisionCodeGenModuleWithConstructorChildren.ts, 10, 30))
>x : Symbol(x, Decl(collisionCodeGenModuleWithConstructorChildren.ts, 1, 14))
        }
    }
}

module M {
>M : Symbol(M, Decl(collisionCodeGenModuleWithConstructorChildren.ts, 0, 0), Decl(collisionCodeGenModuleWithConstructorChildren.ts, 6, 1), Decl(collisionCodeGenModuleWithConstructorChildren.ts, 13, 1))

    class d2 {
>d2 : Symbol(d2, Decl(collisionCodeGenModuleWithConstructorChildren.ts, 15, 10))

        constructor() {
            var M = 10;
>M : Symbol(M, Decl(collisionCodeGenModuleWithConstructorChildren.ts, 18, 15))

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