TypeScript/tests/baselines/reference/parserFunctionPropertyAssignment2.js

7 lines
148 B
JavaScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
//// [parserFunctionPropertyAssignment2.ts]
var v = { 0() { } };
//// [parserFunctionPropertyAssignment2.js]
var v = { 0: function () {
2014-07-13 01:04:16 +02:00
} };