TypeScript/tests/baselines/reference/declFileImportChainInExportAssignment.symbols
2015-04-15 16:44:20 -07:00

25 lines
844 B
Plaintext

=== tests/cases/compiler/declFileImportChainInExportAssignment.ts ===
module m {
>m : Symbol(m, Decl(declFileImportChainInExportAssignment.ts, 0, 0))
export module c {
>c : Symbol(c, Decl(declFileImportChainInExportAssignment.ts, 0, 10))
export class c {
>c : Symbol(c, Decl(declFileImportChainInExportAssignment.ts, 1, 21))
}
}
}
import a = m.c;
>a : Symbol(a, Decl(declFileImportChainInExportAssignment.ts, 5, 1))
>m : Symbol(m, Decl(declFileImportChainInExportAssignment.ts, 0, 0))
>c : Symbol(a, Decl(declFileImportChainInExportAssignment.ts, 0, 10))
import b = a;
>b : Symbol(b, Decl(declFileImportChainInExportAssignment.ts, 6, 15))
>a : Symbol(a, Decl(declFileImportChainInExportAssignment.ts, 0, 10))
export = b;
>b : Symbol(b, Decl(declFileImportChainInExportAssignment.ts, 6, 15))