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
Open file 1 with content print ('Hello File 1'). Keep a break point on this line and start debugging this file. As expected break point hits and the debugging extension logs this stackItem.
Open file 2 with content print ('Hello File 2'). Keep a break point on this line and start debugging this file. As expected break point hits and the debugging extension logs this stackItem.
Resume the second session to continue.
🐛 Extension logs undefined first for activeStackItem and after it logs the stack item of first session
The text was updated successfully, but these errors were encountered:
connor4312
added
bug
Issue identified by VS Code Team member as probable bug
debug
Debug viewlet, configurations, breakpoints, adapter issues
labels
May 28, 2024
Thanks for the bug. This actually represents the view state accurately at the moment: we focus the session, not a thread, and this is not represented in the API. I'll see if consumers run into a case where they need this info, but unless I hear something from consumers I plan to leave as-is.
Testing #213603
Here is the extension code listening to activeStackItem
Steps
print ('Hello File 1')
. Keep a break point on this line and start debugging this file. As expected break point hits and the debugging extension logs this stackItem.print ('Hello File 2')
. Keep a break point on this line and start debugging this file. As expected break point hits and the debugging extension logs this stackItem.🐛 Extension logs
undefined
first foractiveStackItem
and after it logs the stack item of first sessionThe text was updated successfully, but these errors were encountered: