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 79 80 81 82 83 84 85 86 87 88 89 90 91 92
|
=== tests/cases/conformance/internalModules/codeGeneration/importStatementsInterfaces.ts ===
module A {
export interface Point {
x: number;
>x : number
y: number;
>y : number
}
export module inA {
export interface Point3D extends Point {
z: number;
>z : number
}
}
}
// no code gen expected
module B {
import a = A;
>a : any
>A : any
}
// no code gen expected
module C {
>C : typeof C
import a = A;
>a : any
>A : any
import b = a.inA;
>b : any
>a : any
>inA : any
var m: typeof a;
>m : any
>a : any
var p: b.Point3D;
>p : b.Point3D
>b : any
var p = {x:0, y:0, z: 0 };
>p : b.Point3D
>{x:0, y:0, z: 0 } : { x: number; y: number; z: number; }
>x : number
>0 : 0
>y : number
>0 : 0
>z : number
>0 : 0
}
// no code gen expected
module D {
>D : typeof D
import a = A;
>a : any
>A : any
var p : a.Point;
>p : a.Point
>a : any
}
// no code gen expected
module E {
>E : typeof E
import a = A.inA;
>a : any
>A : any
>inA : any
export function xDist(x: a.Point3D) {
>xDist : (x: a.Point3D) => number
>x : a.Point3D
>a : any
return 0 - x.x;
>0 - x.x : number
>0 : 0
>x.x : number
>x : a.Point3D
>x : number
}
}
|