Community
Participate
Working Groups
function foo(obj){ //< void foo(js.Object) } var zot = {}; //<<Object foo(zot); // get error here which is unexpected
This also appears to be the similiar problem as js.Function function bar(obj){ //< js.Function foo(js.Function) return obj; } var obj = { aa : bar( this.aa), bb : bar( this.bb) }
This case is different creating different bug for this one. function bar(obj){ //< js.Function foo(js.Function) return obj; } var obj = { aa : bar( this.aa), bb : bar( this.bb) }
Forgot to flip this one. This was fixed with last round of type conversion fixes.