Skip to main content

Step Through Program

When your program is paused, you can continue execution in a controlled way.

Step Over

Debug > Step Over

Step Over executes the current line and breaks at the next line.

Step Into

Debug > Step Into

If the current line contains a function call, Step Into will call the function and break inside the first line of the function body.

If the current line contains no function call, this behaves like Step Over.

Step Out

Debug > Step Out

This runs until the current function finishes, then breaks in the caller of the current function on the line after the function call.

Keyboard shortcuts

CommandShortcut
Step OverF10
Step IntoF11
Step OutShift+F11