TypeScript/tests/baselines/reference/innerExtern.types

30 lines
410 B
Plaintext
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/innerExtern.ts ===
module A {
>A : typeof A
2014-08-15 23:33:16 +02:00
export declare module BB {
>BB : typeof BB
2014-08-15 23:33:16 +02:00
export var Elephant;
>Elephant : any
2014-08-15 23:33:16 +02:00
}
export module B {
>B : typeof B
2014-08-15 23:33:16 +02:00
export class C {
>C : C
2014-08-15 23:33:16 +02:00
x = BB.Elephant.X;
>x : any
2014-08-15 23:33:16 +02:00
>BB.Elephant.X : any
>BB.Elephant : any
>BB : typeof BB
>Elephant : any
2014-08-15 23:33:16 +02:00
>X : any
}
}
}