TypeScript/tests/baselines/reference/innerExtern.types

30 lines
797 B
Plaintext
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/innerExtern.ts ===
module A {
2015-04-13 23:01:57 +02:00
>A : typeof A, Symbol(A, Decl(innerExtern.ts, 0, 0))
2014-08-15 23:33:16 +02:00
export declare module BB {
2015-04-13 23:01:57 +02:00
>BB : typeof BB, Symbol(BB, Decl(innerExtern.ts, 0, 10))
2014-08-15 23:33:16 +02:00
export var Elephant;
2015-04-13 23:01:57 +02:00
>Elephant : any, Symbol(Elephant, Decl(innerExtern.ts, 2, 18))
2014-08-15 23:33:16 +02:00
}
export module B {
2015-04-13 23:01:57 +02:00
>B : typeof B, Symbol(B, Decl(innerExtern.ts, 3, 5))
2014-08-15 23:33:16 +02:00
export class C {
2015-04-13 23:01:57 +02:00
>C : C, Symbol(C, Decl(innerExtern.ts, 4, 21))
2014-08-15 23:33:16 +02:00
x = BB.Elephant.X;
2015-04-13 23:01:57 +02:00
>x : any, Symbol(x, Decl(innerExtern.ts, 5, 24))
2014-08-15 23:33:16 +02:00
>BB.Elephant.X : any
2015-04-13 23:01:57 +02:00
>BB.Elephant : any, Symbol(BB.Elephant, Decl(innerExtern.ts, 2, 18))
>BB : typeof BB, Symbol(BB, Decl(innerExtern.ts, 0, 10))
>Elephant : any, Symbol(BB.Elephant, Decl(innerExtern.ts, 2, 18))
2014-08-15 23:33:16 +02:00
>X : any
}
}
}