TypeScript/tests/baselines/reference/commentInMethodCall.js
2015-02-06 18:45:09 -08:00

12 lines
193 B
JavaScript

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