TypeScript/tests/baselines/reference/objectLiteralShorthandPropertiesES6.types
2015-04-15 16:44:20 -07:00

51 lines
649 B
Plaintext

=== tests/cases/conformance/es6/shorthandPropertyAssignment/objectLiteralShorthandPropertiesES6.ts ===
var a, b, c;
>a : any
>b : any
>c : any
var x1 = {
>x1 : { a: any; }
>{ a} : { a: any; }
a
>a : any
};
var x2 = {
>x2 : { a: any; }
>{ a,} : { a: any; }
a,
>a : any
}
var x3 = {
>x3 : any
>{ a: 0, b, c, d() { }, x3, parent: x3} : { a: number; b: any; c: any; d(): void; x3: any; parent: any; }
a: 0,
>a : number
>0 : number
b,
>b : any
c,
>c : any
d() { },
>d : () => void
x3,
>x3 : any
parent: x3
>parent : any
>x3 : any
};