-
Notifications
You must be signed in to change notification settings - Fork 31.3k
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
debug - resume on stepping #5822
Comments
I can not reproduce on Mac, but on Windows. I can also not reproduce with a standalone node.js snippet with the same code using node.js 5.11.0. |
I tried on windows and if I use a smaller data array I can not reproduce. With a larger data array it reproduces seldomly. I will also drill deeper tomorrow to check if there is something we can do, though since it is not reprodcuing constantly for me I am having a hard time doing that. |
I can nicely repro on my win vm with Joh's sample, but not on my real win machine.
So it seems to be an issue in node for both of these issues. It might be the different chromium versions used between electron and nodejs. Not sure what we can do here, even though this makes the extension debugging experience worse it is seldomly happening and only on windows. @egamma opinion welcome |
As soon as Electron is out with Chrome 50 support, V8 versions should be aligned again and we should re-test this. |
Ping @chrisdias to decide if we should mention this in release notes |
@isidorn I'm not sure it needs to be in the release notes as I don't think people will look there first to find the issue. People will hopefully be able to find the issue here and watch the progress. |
This seems to work fine in the latest. Couldn't reproduce in Windows 10 VM. |
This still happens for me. Still, in the same weird way as before - not always but almost always. |
@jrieken is this project living on a filesystem that is shared between OS X and Windows? |
No, local to the VM |
@jrieken does this problem occur if longstring is short, e.g. <= 80 ? |
sometimes this occurs already on the first
|
So I think it's unrelated to that. |
@jrieken but it only occurs for 'console.log' (and it does not happen if you comment out the console.logs)? If yes, then this could be a hint towards finding the culprit. 'console.log' in the extension is somewhat 'heavy' because it is read by the EH instance of VS Code, which sends it back to the original VS Code instance where the debugger runs. There it is broadcasted and the debugger picks it up to append it to the debug console. |
yes - only ever in |
@jrieken you are seeing this when running Windows in a VM? When reading all the other comments in this issue it seems that this problem only occurs when running in a VM, but not in real Windows. This supports the hypothesis that this problem is connected to the heavy 'console.log' flow which is more easily affected by a slow setup, e.g. a VM. |
yes - win10 VM |
Probably related to nodejs/node#7219 |
must be fixed in node.js, see nodejs/node#7219 |
yo code
and have the code like belowconsole.log(longString);
the program resumes instead of steppingThe text was updated successfully, but these errors were encountered: