TypeScript/tests/baselines/reference/commentInMethodCall.js

12 lines
193 B
TypeScript
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 () { });