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

20 lines
404 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 : number