Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Array.concat() works incorrectly on proxies under V8 #19

Closed
billmark opened this issue Jul 26, 2013 · 6 comments
Closed

Array.concat() works incorrectly on proxies under V8 #19

billmark opened this issue Jul 26, 2013 · 6 comments
Assignees

Comments

@billmark
Copy link

Something is wrong with Array.concat when it operates on a proxy. This may be a special case of issue #6 but I'm opening a new issue so we can more easily track the details.

var a = ['x', 'y'];
var h = {};
var aProxy = Proxy(a, h);
var aConcat = [].concat(a);
var aProxyConcat = [].concat(aProxy);

d8> print(aConcat.length);
2

d8> print(aProxyConcat.length);
1

I've confirmed that this bug exists with the latest version of harmony-reflect (0.0.7) and with today's trunk version of V8.

@ghost ghost assigned tvcutsem Jul 26, 2013
@tvcutsem
Copy link
Owner

This is because Array.prototype.concat explicitly tests whether one of its arguments is a real array (see http://ecma-international.org/ecma-262/5.1/#sec-15.4.4.4 ). This test fails to recognize a proxy for an array as a real array.

As with issue #6 I'm not sure whether ES6 will eventually end up auto-unwrapping proxies for these cases.

I'll consider patching Array.prototype.concat so that it recognizes proxies.

@metamatt
Copy link
Contributor

You both probably already know this but for anyone else following along it's IMHO worth showing what that aProxyConcat = [].concat(aProxy) actually did:

> aConcat
[ 'x', 'y' ]
> aProxyConcat
[ [ 'x', 'y' ] ]

@billmark
Copy link
Author

Thanks Tom for the quick and clear reply.

Is there an up-to-date list anywhere of all of the built-in routines that are currently "broken" for similar reasons? Such a list would make it easy for me to avoid filing bugs one on issues like this one that are (apparently) already known.

@tvcutsem
Copy link
Owner

There is no such list that I know of. A quick search through the ES5 spec for any text testing explicitly whether an object's [[Class]] is "Array" reveals the following useful matches:

  • Array.isArray
  • Array.prototype.concat
  • JSON.parse
  • JSON.stringify

Given that I already patch Array.isArray, it seems fair to also patch Array.prototype.concat.

Patching the JSON methods is more problematic. This entails doing the recursive parse/stringify in JS itself, thus entirely giving up on the built-in implementation (see also issue #13 )

@tvcutsem
Copy link
Owner

Fixed in v0.0.9.

Essentially, the patched Array.prototype.concat will scan its arguments for proxies-for-arrays. It "unwraps" such proxies by replacing the argument with a copy of the array, before calling the original Array.prototype.concat.

By creating a copy, we will trigger the same sequence of trap invocations on the proxy-for-array handler that would have occurred if the real Array.prototype.concat would have copied it.

The patched version should have little overhead compared to the built-in version if none of the arguments are proxies.

@billmark
Copy link
Author

Thanks, Tom. I've grabbed v0.0.9 and it indeed fixes the issue we had.

yelworc added a commit to yelworc/eleven-server that referenced this issue Nov 15, 2014
Calling the builtin function 'sort' on an array wrapped in an ES6
proxy results in "illegal access" being thrown (a string, not an
Error). This is probably related in some way to these issues:
tvcutsem/harmony-reflect#6
tvcutsem/harmony-reflect#19

This change fixes the problem for the time being through a rather
explicit workaround; if the issue also occurs for other functions, it
will likely surface again.
(also, the change in Session.js makes sure error log entry is nicely
formatted even when strings are thrown)
This issue was closed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants