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

15 lines
218 B
JavaScript

//// [commentOnSimpleArrowFunctionBody1.ts]
function Foo(x: any)
{
}
Foo(() =>
// do something
127);
//// [commentOnSimpleArrowFunctionBody1.js]
function Foo(x) {
}
Foo(function () { return 127; });