step_over
Advance debugger execution by stepping over the current line, skipping function internals to pause at the next line.
Instructions
Executes the current line of code without entering function calls, pausing at the next line. Side effects: advances debugger execution state. Prerequisites: requires an active, paused debugger session. Returns: confirmation of step execution. Use this to skip function internals during debugging. Alternatives: use 'resume' to continue full execution, 'step_over' enters functions, or 'evaluate_on_call_frame' to inspect state without stepping.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||