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