Closed
Description
Repro instructions
Create any app, and set a breakpoint on the first line inside of main:
void main() {
print('hello'); // Set breakpoint here
}
In VsCode, debug this app (click the debug
tooltip above the main
function).
It should stop at the breakpoint you set.
Click the button to open up the CPU profiler
The app will now advance past the breakpoint you set, and exit (unless you have more breakpoints set).
Expected behavior
I expect it to stay stopped at a breakpoint - I set it here in order to be able to resume it once I have connected the profiler and started recording frames.