TypeScript/tests/baselines/reference/declFileImportChainInExportAssignment.types

25 lines
929 B
Plaintext
Raw Normal View History

2014-08-28 01:58:31 +02:00
=== tests/cases/compiler/declFileImportChainInExportAssignment.ts ===
module m {
2015-04-13 23:01:57 +02:00
>m : typeof m, Symbol(m, Decl(declFileImportChainInExportAssignment.ts, 0, 0))
2014-08-28 01:58:31 +02:00
export module c {
2015-04-13 23:01:57 +02:00
>c : typeof m.c, Symbol(c, Decl(declFileImportChainInExportAssignment.ts, 0, 10))
2014-08-28 01:58:31 +02:00
export class c {
2015-04-13 23:01:57 +02:00
>c : c, Symbol(c, Decl(declFileImportChainInExportAssignment.ts, 1, 21))
2014-08-28 01:58:31 +02:00
}
}
}
import a = m.c;
2015-04-13 23:01:57 +02:00
>a : typeof a, Symbol(a, Decl(declFileImportChainInExportAssignment.ts, 5, 1))
>m : typeof m, Symbol(m, Decl(declFileImportChainInExportAssignment.ts, 0, 0))
>c : typeof a, Symbol(a, Decl(declFileImportChainInExportAssignment.ts, 0, 10))
2014-08-28 01:58:31 +02:00
import b = a;
2015-04-13 23:01:57 +02:00
>b : typeof a, Symbol(b, Decl(declFileImportChainInExportAssignment.ts, 6, 15))
>a : typeof a, Symbol(a, Decl(declFileImportChainInExportAssignment.ts, 0, 10))
2014-08-28 01:58:31 +02:00
export = b;
2015-04-13 23:01:57 +02:00
>b : typeof a, Symbol(b, Decl(declFileImportChainInExportAssignment.ts, 6, 15))
2014-08-28 01:58:31 +02:00