Missing PrepareForTailCall in Function.prototype.apply

2016-01-18 Thread Raul-Sebastian Mihăilă
Done, thanks. ___ es-discuss mailing list es-discuss@mozilla.org https://mail.mozilla.org/listinfo/es-discuss

Re: Missing PrepareForTailCall in Function.prototype.apply

2016-01-18 Thread Allen Wirfs-Brock
This looks like a spec. bug, to me. > On Jan 16, 2016, at 7:12 AM, Raul-Sebastian Mihăilă > wrote: > > If apply > (http://www.ecma-international.org/ecma-262/6.0/#sec-function.prototype.apply >

Missing PrepareForTailCall in Function.prototype.apply

2016-01-18 Thread Raul-Sebastian Mihăilă
I would file a bug, but I forgot my bugzilla password and bugzilla doesn't send me the email to reset the password. ___ es-discuss mailing list es-discuss@mozilla.org https://mail.mozilla.org/listinfo/es-discuss

Re: Missing PrepareForTailCall in Function.prototype.apply

2016-01-18 Thread Allen Wirfs-Brock
It should be filed as an issue at https://github.com/tc39/ecma262/issues > On Jan 18, 2016, at 12:53 PM, Raul-Sebastian Mihăilă > wrote: > > I would file a bug, but I forgot my bugzilla password and bugzilla doesn't > send me

Missing PrepareForTailCall in Function.prototype.apply

2016-01-16 Thread Raul-Sebastian Mihăilă
If apply ( http://www.ecma-international.org/ecma-262/6.0/#sec-function.prototype.apply) is called with no argArray, PrepareForTailCall is not performed, unlike in Function.prototype.call, where PrepareForTailCall is always performed. Is it not needed or is it a bug?