TypeScript/tests/baselines/reference/commentsBeforeFunctionExpression1.js
2015-08-06 17:28:11 -07:00

11 lines
194 B
TypeScript

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