TypeScript/tests/baselines/reference/objectLiteralShorthandPropertiesWithModule.types

32 lines
430 B
Text
Raw Normal View History

2014-11-15 00:44:06 +01:00
=== tests/cases/conformance/es6/shorthandPropertyAssignment/objectLiteralShorthandPropertiesWithModule.ts ===
2014-11-11 20:31:45 +01:00
// module export
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
};
}