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
I can reproduce this using the Observatory debugger. This is a bug in the VM. The VM side of the debugger ignores the "isDebuggable" property of libraries and thus pauses even in libraries that are marked as not debuggable.
This is a relic from a time when the VM supported two debuggers.
@turnidge wants to think about how to fix this the right way.
It's entirely possible this is user error, but I'm not sure how to debug further.
For now, I'm trying to set all libraries as not-debuggable for testing; my startup code looks something like this:
I can see the requests all being sent and success responses:
However, it doesn't seem to do what I expect. Here's my sample program:
I have a breakpoint on line 2 and I'm pressing Step Into after it's hit. I end up in broken inside print, but I expected it to just step over.
The text was updated successfully, but these errors were encountered: