TypeScript/tests/baselines/reference/parserErrorRecovery_ObjectLiteral1.js

6 lines
142 B
TypeScript

//// [parserErrorRecovery_ObjectLiteral1.ts]
var v = { a: 1 b: 2 }
//// [parserErrorRecovery_ObjectLiteral1.js]
var v = { a: 1, b: 2 };