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

24 lines
509 B
Plaintext

=== tests/cases/compiler/fatarrowfunctionsInFunctionParameterDefaults.ts ===
function fn(x = () => this, y = x()) {
>fn : (x?: () => any, y?: any) => any
>x : () => any
>() => this : () => any
>this : any
>y : any
>x() : any
>x : () => any
// should be 4
return y;
>y : any
}
fn.call(4); // Should be 4
>fn.call(4) : any
>fn.call : (thisArg: any, ...argArray: any[]) => any
>fn : (x?: () => any, y?: any) => any
>call : (thisArg: any, ...argArray: any[]) => any
>4 : number