You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
roblourens opened this issue
May 31, 2017
· 5 comments
Assignees
Labels
bugIssue identified by VS Code Team member as probable bugdebugDebug viewlet, configurations, breakpoints, adapter issuesverifiedVerification succeeded
To improve stepping performance VS Code has started to get the stacktrace in two chunks: the first frame immediately in response to the stopped event. And after some delay the rest of the frames and the variables for the first frame.
If the number of variables and frames is large, the node.js backend is swamped by the variable request and fails on returning valid stackframes. This results in the "VMundefined" stackframes.
The fix is to better protect against the failing backtrace request and let the stackTrace request fail instead of returning bogus stackframes.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Labels
bugIssue identified by VS Code Team member as probable bugdebugDebug viewlet, configurations, breakpoints, adapter issuesverifiedVerification succeeded
#26557
I step, then it shows VMundefined for frames after the first one for a second, then resolves to the correct details.
Node 7.8
The text was updated successfully, but these errors were encountered: