TypeScript/tests/baselines/reference/objectLiteral1.js

8 lines
115 B
JavaScript

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