TypeScript/tests/baselines/reference/mergedModuleDeclarationCodeGen4.types

41 lines
822 B
Plaintext
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/mergedModuleDeclarationCodeGen4.ts ===
module superContain {
>superContain : typeof superContain
2014-08-15 23:33:16 +02:00
export module contain {
>contain : typeof contain
2014-08-15 23:33:16 +02:00
export module my.buz {
>my : typeof my
>buz : typeof buz
2014-08-15 23:33:16 +02:00
export module data {
>data : typeof data
2014-08-15 23:33:16 +02:00
export function foo() { }
>foo : () => void
2014-08-15 23:33:16 +02:00
}
}
export module my.buz {
>my : typeof my
>buz : typeof buz
2014-08-15 23:33:16 +02:00
export module data {
>data : typeof data
2014-08-15 23:33:16 +02:00
export function bar(contain, my, buz, data) {
>bar : (contain: any, my: any, buz: any, data: any) => void
>contain : any
>my : any
>buz : any
>data : any
2014-08-15 23:33:16 +02:00
foo();
>foo() : void
>foo : () => void
2014-08-15 23:33:16 +02:00
}
}
}
}
}