File: cloduleWithDuplicateMember2.symbols

package info (click to toggle)
node-typescript 5.2.2-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 497,488 kB
  • sloc: javascript: 2,107,274; makefile: 6; sh: 1
file content (27 lines) | stat: -rw-r--r-- 1,069 bytes parent folder | download
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
//// [tests/cases/compiler/cloduleWithDuplicateMember2.ts] ////

=== 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))
}