TypeScript/tests/baselines/reference/commentInMethodCall.js
2015-08-06 17:28:11 -07:00

13 lines
210 B
TypeScript

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