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
|
=== tests/cases/compiler/es6modulekindWithES5Target12.ts ===
export class C {
>C : Symbol(C, Decl(es6modulekindWithES5Target12.ts, 0, 0), Decl(es6modulekindWithES5Target12.ts, 2, 1))
}
export namespace C {
>C : Symbol(C, Decl(es6modulekindWithES5Target12.ts, 0, 0), Decl(es6modulekindWithES5Target12.ts, 2, 1))
export const x = 1;
>x : Symbol(x, Decl(es6modulekindWithES5Target12.ts, 5, 16))
}
export enum E {
>E : Symbol(E, Decl(es6modulekindWithES5Target12.ts, 6, 1), Decl(es6modulekindWithES5Target12.ts, 10, 1), Decl(es6modulekindWithES5Target12.ts, 14, 1), Decl(es6modulekindWithES5Target12.ts, 18, 1))
w = 1
>w : Symbol(E.w, Decl(es6modulekindWithES5Target12.ts, 8, 15))
}
export enum E {
>E : Symbol(E, Decl(es6modulekindWithES5Target12.ts, 6, 1), Decl(es6modulekindWithES5Target12.ts, 10, 1), Decl(es6modulekindWithES5Target12.ts, 14, 1), Decl(es6modulekindWithES5Target12.ts, 18, 1))
x = 2
>x : Symbol(E.x, Decl(es6modulekindWithES5Target12.ts, 12, 15))
}
export namespace E {
>E : Symbol(E, Decl(es6modulekindWithES5Target12.ts, 6, 1), Decl(es6modulekindWithES5Target12.ts, 10, 1), Decl(es6modulekindWithES5Target12.ts, 14, 1), Decl(es6modulekindWithES5Target12.ts, 18, 1))
export const y = 1;
>y : Symbol(y, Decl(es6modulekindWithES5Target12.ts, 17, 16))
}
export namespace E {
>E : Symbol(E, Decl(es6modulekindWithES5Target12.ts, 6, 1), Decl(es6modulekindWithES5Target12.ts, 10, 1), Decl(es6modulekindWithES5Target12.ts, 14, 1), Decl(es6modulekindWithES5Target12.ts, 18, 1))
export const z = 1;
>z : Symbol(z, Decl(es6modulekindWithES5Target12.ts, 21, 16))
}
export namespace N {
>N : Symbol(N, Decl(es6modulekindWithES5Target12.ts, 22, 1), Decl(es6modulekindWithES5Target12.ts, 25, 1))
}
export namespace N {
>N : Symbol(N, Decl(es6modulekindWithES5Target12.ts, 22, 1), Decl(es6modulekindWithES5Target12.ts, 25, 1))
export const x = 1;
>x : Symbol(x, Decl(es6modulekindWithES5Target12.ts, 28, 16))
}
export function F() {
>F : Symbol(F, Decl(es6modulekindWithES5Target12.ts, 29, 1), Decl(es6modulekindWithES5Target12.ts, 32, 1))
}
export namespace F {
>F : Symbol(F, Decl(es6modulekindWithES5Target12.ts, 29, 1), Decl(es6modulekindWithES5Target12.ts, 32, 1))
export const x = 1;
>x : Symbol(x, Decl(es6modulekindWithES5Target12.ts, 35, 16))
}
|