step_over
Execute one or more instructions in a paused debug session while stepping over function calls; called functions run entirely and control returns afterward, preventing unnecessary tracing into subroutines.
Instructions
Execute one or more instructions, stepping OVER function calls. REQUIRES: session state must be 'paused'. If the current instruction is a CALL, the entire called function executes and control returns to the instruction after the CALL. Use step_into if you want to trace inside the called function.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| sessionId | Yes | Session ID | |
| count | No | Number of instructions to step (default 1) |