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
|
=== tests/cases/compiler/exportAlreadySeen.ts ===
module M {
>M : Symbol(M, Decl(exportAlreadySeen.ts, 0, 0))
export export var x = 1;
>x : Symbol(x, Decl(exportAlreadySeen.ts, 1, 21))
export export function f() { }
>f : Symbol(f, Decl(exportAlreadySeen.ts, 1, 28))
export export module N {
>N : Symbol(N, Decl(exportAlreadySeen.ts, 2, 34))
export export class C { }
>C : Symbol(C, Decl(exportAlreadySeen.ts, 4, 28))
export export interface I { }
>I : Symbol(I, Decl(exportAlreadySeen.ts, 5, 33))
}
}
declare module A {
>A : Symbol(A, Decl(exportAlreadySeen.ts, 8, 1))
export export var x;
>x : Symbol(x, Decl(exportAlreadySeen.ts, 11, 21))
export export function f()
>f : Symbol(f, Decl(exportAlreadySeen.ts, 11, 24))
export export module N {
>N : Symbol(N, Decl(exportAlreadySeen.ts, 12, 30))
export export class C { }
>C : Symbol(C, Decl(exportAlreadySeen.ts, 14, 28))
export export interface I { }
>I : Symbol(I, Decl(exportAlreadySeen.ts, 15, 33))
}
}
|