TypeScript/tests/baselines/reference/objectLiteralShorthandPropertiesWithModuleES6.types

31 lines
415 B
Text
Raw Normal View History

2014-11-15 00:44:06 +01:00
=== tests/cases/conformance/es6/shorthandPropertyAssignment/objectLiteralShorthandPropertiesWithModuleES6.ts ===
2014-11-11 20:31:45 +01:00
module m {
>m : typeof m
export var x;
>x : any
}
module m {
>m : typeof m
var z = x;
>z : any
>x : any
var y = {
>y : { a: any; x: any; }
>{ a: x, x } : { a: any; x: any; }
a: x,
>a : any
>x : any
x
>x : any
};
}