TypeScript/tests/baselines/reference/commentInMethodCall.symbols
2015-10-05 16:37:45 -07:00

13 lines
346 B
Plaintext

=== tests/cases/compiler/commentInMethodCall.ts ===
//commment here
var s: string[];
>s : Symbol(s, Decl(commentInMethodCall.ts, 1, 3))
s.map(// do something
>s.map : Symbol(Array.map, Decl(lib.d.ts, --, --))
>s : Symbol(s, Decl(commentInMethodCall.ts, 1, 3))
>map : Symbol(Array.map, Decl(lib.d.ts, --, --))
function () { });