TypeScript/tests/baselines/reference/objectLiteralWithSemicolons5.js

6 lines
183 B
JavaScript
Raw Normal View History

//// [objectLiteralWithSemicolons5.ts]
var v = { foo() { }; a: b; get baz() { }; }
//// [objectLiteralWithSemicolons5.js]
2015-02-07 04:06:16 +01:00
var v = { foo: function () { }, a: b, get baz() { } };