1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
=== tests/cases/compiler/mergedModuleDeclarationWithSharedExportedVar.ts ===
module M {
>M : Symbol(M, Decl(mergedModuleDeclarationWithSharedExportedVar.ts, 0, 0), Decl(mergedModuleDeclarationWithSharedExportedVar.ts, 3, 1))
export var v = 10;
>v : Symbol(v, Decl(mergedModuleDeclarationWithSharedExportedVar.ts, 1, 14))
v;
>v : Symbol(v, Decl(mergedModuleDeclarationWithSharedExportedVar.ts, 1, 14))
}
module M {
>M : Symbol(M, Decl(mergedModuleDeclarationWithSharedExportedVar.ts, 0, 0), Decl(mergedModuleDeclarationWithSharedExportedVar.ts, 3, 1))
v;
>v : Symbol(v, Decl(mergedModuleDeclarationWithSharedExportedVar.ts, 1, 14))
}
|