TypeScript/tests/baselines/reference/commentsBeforeFunctionExpression1.js

11 lines
183 B
TypeScript

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