TypeScript/tests/baselines/reference/declarationEmitImportInExportAssignmentModule.types

24 lines
933 B
Plaintext
Raw Normal View History

=== tests/cases/compiler/declarationEmitImportInExportAssignmentModule.ts ===
module m {
2015-04-13 23:01:57 +02:00
>m : typeof m, Symbol(m, Decl(declarationEmitImportInExportAssignmentModule.ts, 0, 0))
export module c {
2015-04-13 23:01:57 +02:00
>c : typeof x, Symbol(x, Decl(declarationEmitImportInExportAssignmentModule.ts, 1, 10))
export class c {
2015-04-13 23:01:57 +02:00
>c : c, Symbol(c, Decl(declarationEmitImportInExportAssignmentModule.ts, 2, 21))
}
}
import x = c;
2015-04-13 23:01:57 +02:00
>x : typeof x, Symbol(x, Decl(declarationEmitImportInExportAssignmentModule.ts, 5, 5))
>c : typeof x, Symbol(x, Decl(declarationEmitImportInExportAssignmentModule.ts, 1, 10))
export var a: typeof x;
2015-04-13 23:01:57 +02:00
>a : typeof x, Symbol(a, Decl(declarationEmitImportInExportAssignmentModule.ts, 7, 14))
>x : typeof x, Symbol(x, Decl(declarationEmitImportInExportAssignmentModule.ts, 5, 5))
}
export = m;
2015-04-13 23:01:57 +02:00
>m : typeof m, Symbol(m, Decl(declarationEmitImportInExportAssignmentModule.ts, 0, 0))