TypeScript/tests/baselines/reference/commentOnParenthesizedExpressionOpenParen1.types

16 lines
295 B
Plaintext
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/commentOnParenthesizedExpressionOpenParen1.ts ===
var j;
>j : any
2014-08-15 23:33:16 +02:00
var f: () => any;
>f : () => any
2014-08-15 23:33:16 +02:00
<any>( /* Preserve */ j = f());
><any>( /* Preserve */ j = f()) : any
>( /* Preserve */ j = f()) : any
>j = f() : any
>j : any
2014-08-15 23:33:16 +02:00
>f() : any
>f : () => any
2014-08-15 23:33:16 +02:00