DEBSOURCES
Skip Quicknav
sources / node-typescript / 2.1.5-1~bpo8%2B1 / tests / cases / compiler / fatarrowfunctionsInFunctionParameterDefaults.ts
12345678
function fn(x = () => this, y = x()) { // should be 4 return y; } fn.call(4); // Should be 4