TypeScript/tests/baselines/reference/globalThisCapture.types
2016-09-01 14:25:44 -07:00

20 lines
399 B
Plaintext

=== tests/cases/compiler/globalThisCapture.ts ===
// Add a lambda to ensure global 'this' capture is triggered
(()=>this.window);
>(()=>this.window) : () => any
>()=>this.window : () => any
>this.window : any
>this : any
>window : any
var parts = [];
>parts : any[]
>[] : undefined[]
// Ensure that the generated code is correct
parts[0];
>parts[0] : any
>parts : any[]
>0 : 0