TypeScript/tests/baselines/reference/commentInMethodCall.js

13 lines
194 B
JavaScript

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