TypeScript/tests/baselines/reference/thisExpressionInIndexExpression.types

12 lines
222 B
Text
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/thisExpressionInIndexExpression.ts ===
function f() {
>f : () => (r: any) => any
return r => r[this];
>r => r[this] : (r: any) => any
>r : any
>r[this] : any
>r : any
>this : any
}