TypeScript/tests/baselines/reference/commentOnSimpleArrowFunctionBody1.js

18 lines
245 B
TypeScript

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