TypeScript/tests/baselines/reference/objectLiteralShorthandPropertiesErrorFromNoneExistingIdentifier.js

13 lines
287 B
TypeScript
Raw Normal View History

2014-11-15 00:44:06 +01:00
//// [objectLiteralShorthandPropertiesErrorFromNoneExistingIdentifier.ts]
var x = {
x, // OK
undefinedVariable // Error
}
//// [objectLiteralShorthandPropertiesErrorFromNoneExistingIdentifier.js]
var x = {
x: x,
undefinedVariable: undefinedVariable // Error
};