1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
|
=== tests/cases/compiler/dottedModuleName2.ts ===
module A.B {
>A : typeof A
>B : typeof B
export var x = 1;
>x : number
>1 : 1
}
module AA { export module B {
>AA : typeof AA
>B : typeof B
export var x = 1;
>x : number
>1 : 1
} }
var tmpOK = AA.B.x;
>tmpOK : number
>AA.B.x : number
>AA.B : typeof AA.B
>AA : typeof AA
>B : typeof AA.B
>x : number
var tmpError = A.B.x;
>tmpError : number
>A.B.x : number
>A.B : typeof A.B
>A : typeof A
>B : typeof A.B
>x : number
module A.B.C
>A : typeof A
>B : typeof B
>C : typeof C
{
export var x = 1;
>x : number
>1 : 1
}
module M
{
import X1 = A;
>X1 : typeof X1
>A : typeof X1
import X2 = A.B;
>X2 : typeof X1.B
>A : typeof X1
>B : typeof X1.B
import X3 = A.B.C;
>X3 : typeof X2.C
>A : typeof X1
>B : typeof X1.B
>C : typeof X2.C
}
|