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 93 94 95 96 97 98 99 100 101 102
|
=== tests/cases/compiler/topLevel.ts ===
interface IPoint {
x:number;
>x : number
y:number;
>y : number
}
class Point implements IPoint {
>Point : Point
constructor(public x,public y){}
>x : any
>y : any
public move(xo:number,yo:number) {
>move : (xo: number, yo: number) => this
>xo : number
>yo : number
this.x+=xo;
>this.x+=xo : any
>this.x : any
>this : this
>x : any
>xo : number
this.y+=yo;
>this.y+=yo : any
>this.y : any
>this : this
>y : any
>yo : number
return this;
>this : this
}
public toString() {
>toString : () => string
return ("("+this.x+","+this.y+")");
>("("+this.x+","+this.y+")") : string
>"("+this.x+","+this.y+")" : string
>"("+this.x+","+this.y : string
>"("+this.x+"," : string
>"("+this.x : string
>"(" : "("
>this.x : any
>this : this
>x : any
>"," : ","
>this.y : any
>this : this
>y : any
>")" : ")"
}
}
var result="";
>result : string
>"" : ""
result+=(new Point(3,4).move(2,2));
>result+=(new Point(3,4).move(2,2)) : string
>result : string
>(new Point(3,4).move(2,2)) : Point
>new Point(3,4).move(2,2) : Point
>new Point(3,4).move : (xo: number, yo: number) => Point
>new Point(3,4) : Point
>Point : typeof Point
>3 : 3
>4 : 4
>move : (xo: number, yo: number) => Point
>2 : 2
>2 : 2
module M {
>M : typeof M
export var origin=new Point(0,0);
>origin : Point
>new Point(0,0) : Point
>Point : typeof Point
>0 : 0
>0 : 0
}
result+=(M.origin.move(1,1));
>result+=(M.origin.move(1,1)) : string
>result : string
>(M.origin.move(1,1)) : Point
>M.origin.move(1,1) : Point
>M.origin.move : (xo: number, yo: number) => Point
>M.origin : Point
>M : typeof M
>origin : Point
>move : (xo: number, yo: number) => Point
>1 : 1
>1 : 1
|