-
Notifications
You must be signed in to change notification settings - Fork 30.5k
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
REPL debugging Proxy bug #8224
Comments
The example works for me with node v6.3.1 on Linux. |
I can reproduce with v6.4.0 |
I can also reproduce it with V8 5.1 (#8054). |
Basic repro:
Related V8 issue: https://bugs.chromium.org/p/v8/issues/detail?id=3270 |
@targos Would I be right to conclude that this bug is relevant in 6.x but not in 8.x because we don't use the legacy debugger API anymore? |
A fix for this issue is in #10409, though that is stalled. |
@Trott that would be right. |
Fixed in #14343 |
Example Code:
Problem:
Running in debug mode via
node debug index.js
, REPL cannot get the value ofp
, instead outputtingillegal access
. Gettingp[0]
orp.length
within REPL works.Additional Notes:
The text was updated successfully, but these errors were encountered: