TypeScript/tests/baselines/reference/commentOnSimpleArrowFunctionBody1.js

18 lines
245 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
//// [commentOnSimpleArrowFunctionBody1.ts]
function Foo(x: any)
{
}
Foo(() =>
// do something
127);
//// [commentOnSimpleArrowFunctionBody1.js]
function Foo(x) {
}
Foo(function () {
// do something
return 127;
});