TypeScript/tests/baselines/reference/classDeclarationMergedInModuleWithContinuation.types

27 lines
369 B
Plaintext
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/classDeclarationMergedInModuleWithContinuation.ts ===
module M {
>M : typeof M
2014-08-15 23:33:16 +02:00
export class N { }
>N : N
2014-08-15 23:33:16 +02:00
export module N {
>N : typeof N
2014-08-15 23:33:16 +02:00
export var v = 0;
>v : number
2015-04-13 21:36:11 +02:00
>0 : number
2014-08-15 23:33:16 +02:00
}
}
module M {
>M : typeof M
2014-08-15 23:33:16 +02:00
export class O extends M.N {
>O : O
2015-06-16 15:55:52 +02:00
>M.N : N
>M : typeof M
2015-06-16 00:46:29 +02:00
>N : typeof N
2014-08-15 23:33:16 +02:00
}
}