TypeScript/tests/baselines/reference/objectLiteralShorthandPropertiesErrorFromNoneExistingIdentifier.js
2014-11-14 15:44:06 -08:00

13 lines
287 B
TypeScript

//// [objectLiteralShorthandPropertiesErrorFromNoneExistingIdentifier.ts]
var x = {
x, // OK
undefinedVariable // Error
}
//// [objectLiteralShorthandPropertiesErrorFromNoneExistingIdentifier.js]
var x = {
x: x,
undefinedVariable: undefinedVariable // Error
};