TypeScript/tests/baselines/reference/commentInMethodCall.js
2014-07-12 17:30:19 -07:00

12 lines
177 B
JavaScript

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