TypeScript/tests/baselines/reference/internalAliasWithDottedNameEmit.types

21 lines
979 B
Plaintext
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/internalAliasWithDottedNameEmit.ts ===
module a.b.c {
2015-04-13 23:01:57 +02:00
>a : typeof a, Symbol(a, Decl(internalAliasWithDottedNameEmit.ts, 0, 0), Decl(internalAliasWithDottedNameEmit.ts, 2, 1))
>b : typeof b, Symbol(b, Decl(internalAliasWithDottedNameEmit.ts, 0, 9))
>c : typeof c, Symbol(c, Decl(internalAliasWithDottedNameEmit.ts, 0, 11))
2014-08-15 23:33:16 +02:00
export var d;
2015-04-13 23:01:57 +02:00
>d : any, Symbol(d, Decl(internalAliasWithDottedNameEmit.ts, 1, 16))
2014-08-15 23:33:16 +02:00
}
module a.e.f {
2015-04-13 23:01:57 +02:00
>a : typeof a, Symbol(a, Decl(internalAliasWithDottedNameEmit.ts, 0, 0), Decl(internalAliasWithDottedNameEmit.ts, 2, 1))
>e : any, Symbol(e, Decl(internalAliasWithDottedNameEmit.ts, 3, 9))
>f : any, Symbol(f, Decl(internalAliasWithDottedNameEmit.ts, 3, 11))
2014-08-15 23:33:16 +02:00
import g = b.c;
2015-04-13 23:01:57 +02:00
>g : typeof g, Symbol(g, Decl(internalAliasWithDottedNameEmit.ts, 3, 14))
>b : typeof b, Symbol(b, Decl(internalAliasWithDottedNameEmit.ts, 0, 9))
>c : typeof g, Symbol(g, Decl(internalAliasWithDottedNameEmit.ts, 0, 11))
2014-08-15 23:33:16 +02:00
}