Running the tests with --harmony-block-scoping doesn't fail because of missing
functions (as expected, the names weren't mentioned in any JS file).

However, there are failures due to passing a JSProxy to Object.getPrototypeOf
(in mjsunit/harmony/proxies), since proxies are not JSObject's.

We can't do access checks on proxies, since our callback only supports a
JSObject as object. We should either 1) not do access checks on proxies, but
just get the prototype of the proxy, or 2) extend access checks to apply to
JSReceiver. I'll implement 1 for now, since the ObjectGetPrototypeOf function
doesn't support proxies at all with the current change.



http://codereview.chromium.org/7701023/

--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

Reply via email to