TypeScript/tests/baselines/reference/objectLiteral2.js

9 lines
125 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
//// [objectLiteral2.ts]
var v30 = {a:1, b:2}, v31;
//// [objectLiteral2.js]
var v30 = {
a: 1,
b: 2
}, v31;