TypeScript/tests/baselines/reference/objectLiteralWithSemicolons2.js

14 lines
154 B
TypeScript

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