TypeScript/tests/baselines/reference/objectLiteralWithSemicolons1.js

6 lines
132 B
TypeScript

//// [objectLiteralWithSemicolons1.ts]
var v = { a; b; c }
//// [objectLiteralWithSemicolons1.js]
var v = { a: , b: , c: c };