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
fix(runtime-core): in
operator returning false
for built-in instance properties in exposeProxy
(fix #6137)
#6138
Conversation
…nce properties in `exposeProxy` `exposeProxy` implements a fallback logic for accessing built-in instance properties but was missing the same logic for the `in` operator in the Proxy's `has()` handler. fix vuejs#6137
Hey, just wanted to ask if there is anything I can do to get this fix merged |
@yyx990803 sorry for tagging. This is my last attempt to try to get this fix merged. |
We are just starting an effort to clean up and re-review PRs that are unmerged even though ready to go. We have accumulated quite a number of those so it may still take a bit. Please be a bit more patient. Thanks |
…nce properties in `exposeProxy` (vuejs#6138) fix vuejs#6137
This PR tries to fix #6137.
Background info
The component
exposeProxy
implements a fallback logic for accessing built-in instance properties but was missing the same logic for thein
operator in the Proxy'shas()
handler.