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
Make sure to test both the legacy and the inspector adapter. In order to test the legacy adapter make sure you have the "protocol": "legacy" in your launch.json, for inspector adapter have "protocol": "inspector".
Take a javascript / typescript repository (example: smoke test repo) and debug it. Verify:
The callstack view is nicely showing the call stack as in previous vscode versions
For long callStacks there is a "Load more stack frames" button which does what is expected
You can step very quickly through the code and the variables and the callStack view will be fully updated only once you are no longer fastly stepping
Debug the typescript repository and verify stepping performance is much improved. Here are steps on how to configure debugging in that repo.
The text was updated successfully, but these errors were encountered:
Refs: #25605
complexity: 3
Make sure to test both the
legacy
and theinspector
adapter. In order to test thelegacy
adapter make sure you have the"protocol": "legacy"
in yourlaunch.json
, forinspector
adapter have"protocol": "inspector"
.Take a javascript / typescript repository (example: smoke test repo) and debug it. Verify:
The text was updated successfully, but these errors were encountered: