Comment #1 on issue 4081 by [email protected]: Make [[HomeObject]] a
lexically scoped binding?
https://code.google.com/p/v8/issues/detail?id=4081
While trying to finish https://codereview.chromium.org/1092503003/ I
realized that we need to make HomeObject an "ordinary" too variable for it
to work as expected in arrow functions. So I'm going to make an
intermediate mode:
let o = {
m() {
return () => super.toString;
}
};
will be handled as:
let o = {
m() {
const .home_object = %ThisFunction()[Symbol.HomeObject];
return () => super.toString;
}
};
--
You received this message because this project is configured to send all
issue notifications to this address.
You may adjust your notification preferences at:
https://code.google.com/hosting/settings
--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
---
You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.