File: cloduleWithDuplicateMember2.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-- 1,023 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/cloduleWithDuplicateMember2.ts ===
class C {
>C : Symbol(C, Decl(cloduleWithDuplicateMember2.ts, 0, 0), Decl(cloduleWithDuplicateMember2.ts, 3, 1), Decl(cloduleWithDuplicateMember2.ts, 7, 1))

    set x(y) { }
>x : Symbol(C.x, Decl(cloduleWithDuplicateMember2.ts, 0, 9))
>y : Symbol(y, Decl(cloduleWithDuplicateMember2.ts, 1, 10))

    static set y(z) { }
>y : Symbol(C.y, Decl(cloduleWithDuplicateMember2.ts, 1, 16))
>z : Symbol(z, Decl(cloduleWithDuplicateMember2.ts, 2, 17))
}

module C {
>C : Symbol(C, Decl(cloduleWithDuplicateMember2.ts, 0, 0), Decl(cloduleWithDuplicateMember2.ts, 3, 1), Decl(cloduleWithDuplicateMember2.ts, 7, 1))

    export var x = 1;
>x : Symbol(x, Decl(cloduleWithDuplicateMember2.ts, 6, 14))
}
module C {
>C : Symbol(C, Decl(cloduleWithDuplicateMember2.ts, 0, 0), Decl(cloduleWithDuplicateMember2.ts, 3, 1), Decl(cloduleWithDuplicateMember2.ts, 7, 1))

    export function x() { }
>x : Symbol(x, Decl(cloduleWithDuplicateMember2.ts, 8, 10))
}