continue
Continue program execution until the next breakpoint or program termination. Optionally wait for a breakpoint hit to return variables, or collect multiple breakpoint hits and return all traces.
Instructions
Continue execution until the next breakpoint or program end. Use waitForBreakpoint to block until a breakpoint is hit and return variables. Use collectHits to run through multiple breakpoint hits, collecting variables at each, then return all traces.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| timeout | No | Timeout in ms when waiting for breakpoint (default: 30000) | |
| threadId | No | Optional thread ID (defaults to current thread) | |
| sessionId | Yes | Debug session ID | |
| collectHits | No | Collect this many breakpoint hits before returning. At each hit, variables are captured and execution auto-continues. Returns all traces when done. | |
| waitForBreakpoint | No | Wait for breakpoint hit and return variables (default: false) |