TypeScript/tests/baselines/reference/commentInMethodCall.js

12 lines
193 B
TypeScript

//// [commentInMethodCall.ts]
//commment here
var s: string[];
s.map(// do something
function () { });
//// [commentInMethodCall.js]
//commment here
var s;
s.map(function () { });