TypeScript/tests/baselines/reference/objectLiteralWithSemicolons3.js

14 lines
154 B
TypeScript

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