TypeScript/tests/baselines/reference/commentOnParenthesizedExpressionOpenParen1.symbols
2015-04-15 16:44:20 -07:00

12 lines
442 B
Plaintext

=== tests/cases/compiler/commentOnParenthesizedExpressionOpenParen1.ts ===
var j;
>j : Symbol(j, Decl(commentOnParenthesizedExpressionOpenParen1.ts, 0, 3))
var f: () => any;
>f : Symbol(f, Decl(commentOnParenthesizedExpressionOpenParen1.ts, 1, 3))
<any>( /* Preserve */ j = f());
>j : Symbol(j, Decl(commentOnParenthesizedExpressionOpenParen1.ts, 0, 3))
>f : Symbol(f, Decl(commentOnParenthesizedExpressionOpenParen1.ts, 1, 3))