TypeScript/tests/baselines/reference/commentsBeforeFunctionExpression1.js
2014-07-12 17:30:19 -07:00

11 lines
183 B
JavaScript

//// [commentsBeforeFunctionExpression1.ts]
var v = {
f: /**own f*/ (a) => 0
}
//// [commentsBeforeFunctionExpression1.js]
var v = {
f: function (a) { return 0; }
};