TypeScript/tests/baselines/reference/objectLiteral2.js

8 lines
125 B
JavaScript

//// [objectLiteral2.ts]
var v30 = {a:1, b:2}, v31;
//// [objectLiteral2.js]
var v30 = {
a: 1,
b: 2
}, v31;