TypeScript/tests/baselines/reference/es6ClassTest3.types
Vladimir Matveev f06423bffc Revert "add part of test baselines"
This reverts commit 502b2ba321.
2016-03-09 17:08:26 -08:00

40 lines
581 B
Plaintext

=== tests/cases/compiler/es6ClassTest3.ts ===
module M {
>M : typeof M
class Visibility {
>Visibility : Visibility
public foo() { };
>foo : () => void
private bar() { };
>bar : () => void
private x: number;
>x : number
public y: number;
>y : number
public z: number;
>z : number
constructor() {
this.x = 1;
>this.x = 1 : number
>this.x : number
>this : this
>x : number
>1 : number
this.y = 2;
>this.y = 2 : number
>this.y : number
>this : this
>y : number
>2 : number
}
}
}