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
Using the following code and a breakpoint at the location specified location
varscreenName='hello';setTimeout(function(){console.log('done');a(screenName);process.exit();},1000)functiona(screenName){console.log(screenName);// SET BREAKPOINT HERE}
hovering over screenName at this position should produce the string "hello", instead, no hover appears. Changing the name of the argument resolves the issue.
roblourens
added
debug
Debug viewlet, configurations, breakpoints, adapter issues
bug
Issue identified by VS Code Team member as probable bug
labels
Sep 28, 2016
There are multiple variables names screenName (in mulitple scopes). Due to the lack of language knowledge we decide to now show anything since we can not be sure over which hover the user is hovering over.
Closing as duplicate - as there are other issues like this which we plan to fix by introducing language knowledge to the hover
From @mousetraps on September 27, 2016 21:0
Testing #12600
Using the following code and a breakpoint at the location specified location
hovering over screenName at this position should produce the string
"hello"
, instead, no hover appears. Changing the name of the argument resolves the issue.Copied from original issue: microsoft/vscode-node-debug2#34
The text was updated successfully, but these errors were encountered: