Status: New
Owner: ----
New issue 2080 by [email protected]: Array.prototype.concat requires
ToObject(this)
http://code.google.com/p/v8/issues/detail?id=2080
According to ES5 15.4.4.4 step 1, the 'this' value in
Array.prototype.concat must be transformed into an object using ToObject.
This is currently not the case:
typeof Array.prototype.concat.call(123)[0];
// actual: "number"
// expected: "object"
If this is fixed, test262 15.4.4.4-5-c-i-1 passes.
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev