TypeScript/tests/baselines/reference/parserFunctionPropertyAssignment4.js

7 lines
151 B
JavaScript
Raw Normal View History

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