-
Notifications
You must be signed in to change notification settings - Fork 29.7k
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
Add debugger alias for exec(expr) #41794
Labels
debugger
Issues and PRs related to the debugger subsystem.
feature request
Issues that request new features to be added to Node.js.
good first issue
Issues that are suitable for first-time contributors.
Comments
Moving back to node since the code was merged into node itself. I think |
jkrems
added
debugger
Issues and PRs related to the debugger subsystem.
feature request
Issues that request new features to be added to Node.js.
good first issue
Issues that are suitable for first-time contributors.
labels
Jan 31, 2022
bengl
pushed a commit
to bengl/node
that referenced
this issue
Feb 21, 2022
nodejs#41794 PR-URL: nodejs#41907 Reviewed-By: Jan Krems <jan.krems@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com>
bengl
pushed a commit
to bengl/node
that referenced
this issue
Feb 21, 2022
nodejs#41794 PR-URL: nodejs#41907 Reviewed-By: Jan Krems <jan.krems@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com>
danielleadams
pushed a commit
to danielleadams/node
that referenced
this issue
Apr 21, 2022
nodejs#41794 PR-URL: nodejs#41907 Reviewed-By: Jan Krems <jan.krems@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
debugger
Issues and PRs related to the debugger subsystem.
feature request
Issues that request new features to be added to Node.js.
good first issue
Issues that are suitable for first-time contributors.
node v9.8.0
In the debugger you can quickly inspect the value of a variable at run-time using
exec
. GivenTo more quickly debug an application it would be nice to alias exec to
e
orp
so one can doEven better if the expression could be passed without parens and quotes
This is in the same spirit as when pressing
Enter
the debugger will repeat the previous command.From #20963
The text was updated successfully, but these errors were encountered: