-
Notifications
You must be signed in to change notification settings - Fork 267
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
Under certain conditions, placing a break point into a method called when an onPress event fire in a button, causes the vscode debugger to apparently hang when the method breakpoint is reached. #368
Comments
the chrome debugger works fine. |
@bgiavotto, this souds like a dupe of #273 and appears to be a node@6.x issue |
I got also problems with node 7.x |
I still suspect that it is the same issue, which we've reported at nodejs/node#8347 Node is currently going through a change of how debugging works. Unfortunately for us, the new system (which I believe works in this case) is still experimental and changing, while the old system is essentially deprecated and doesn't seem likely to have much more done on it. |
maybe getting a quick view on how the chrome debugger does the interaction with debugger can help? |
however i agree about your suspect, it's probably the same problem |
This issue has been fixed by switching to |
Actual Behavior
please notice that changing the onPress handler from
onPress={ this.buttonclick }
to
onPress={ ()=> { this.buttonclick() } }
make the problem disappear.
Expected Behavior
Instead on hanging up the vscode should catch up the breakpoint and show in the source code the current execution line
Software versions
Outputs (Include if relevant)
The text was updated successfully, but these errors were encountered: