-
Notifications
You must be signed in to change notification settings - Fork 74
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
Cannot debug by using get-started/debug.html#debug #567
Comments
@omg1492 thanks for the thorough report. I'm rebuilding a Windows 11 VM to test this scenario. I'll be honest, most of the development and testing is happening on Linux, so I have slacked a bit there. Likewise, I'll keep you posted as I'll go over the issue. |
@omg1492 it seems that there's a behavior change in graal debugger. The inspect will always require a port, plus breaking at start now seems to be true by default which makes the properties used by es4x to misbehave. I'll tag this issue as a bug and continue debugging. We will need to update the docs to be explicit. |
The latest release 0.16.3 fixed the start of the debugger however there's a regression on Graal that doesn't show any sources so breakpoints don't work at the moment. I'm fixing this and reporting upstream |
For reasons, the supported way to debug is using |
I understood that:
OK? |
I've been looking at this. It seems that the builtin debugger doesn't fully work anymore with the vscode default debugger. I've updated the docs. There are 2 way of debugging:
I've updated the vscode command to generate this config now. Here's the config: {
"version" : "0.2.0",
"configurations" : [ {
"name" : "Launch empty-project",
"type" : "graalvm",
"request" : "attach",
"port" : 9229
} ]
} |
I'd like to start with ES4X, so I tried to debug Hello World example following steps on https://reactiverse.io/es4x/get-started/debug.html#debug. It looks like doc is outdated and does not help user to start debugging.
My environment:
Scaffolding Hello World app:
Test from another
cmd
window:Steps to reproduce:
index.js
are unbound, while it is possible to step throughes4x-cli.js
:Might relate to #432
The text was updated successfully, but these errors were encountered: