TypeScript/tests/baselines/reference/commentInMethodCall.js

13 lines
194 B
JavaScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
//// [commentInMethodCall.ts]
//commment here
var s: string[];
s.map(// do something
function () { });
//// [commentInMethodCall.js]
//commment here
2014-07-13 01:04:16 +02:00
var s;
s.map(function () {
});