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
|
=== tests/cases/conformance/es6/classDeclaration/emitClassDeclarationWithConstructorInES6.ts ===
class A {
>A : A
y: number;
>y : number
constructor(x: number) {
>x : number
}
foo(a: any);
>foo : (a: any) => any
>a : any
foo() { }
>foo : (a: any) => any
}
class B {
>B : B
y: number;
>y : number
x: string = "hello";
>x : string
>"hello" : "hello"
_bar: string;
>_bar : string
constructor(x: number, z = "hello", ...args) {
>x : number
>z : string
>"hello" : "hello"
>args : any[]
this.y = 10;
>this.y = 10 : 10
>this.y : number
>this : this
>y : number
>10 : 10
}
baz(...args): string;
>baz : (...args: any[]) => string
>args : any[]
baz(z: string, v: number): string {
>baz : (...args: any[]) => string
>z : string
>v : number
return this._bar;
>this._bar : string
>this : this
>_bar : string
}
}
|