13.2.8 Debug Toolbar

The Debug toolbar currently contains button icons for the following functions. These functions are also on the Debug menu.

IconIcon TextFunction
Finish Debugger SessionEnds the debugging session.
PausePauses debugging. Use Continue to resume.
ResetRuns the current project to the cursor’s location in the file and stop program execution.
ContinueResumes debugging until the next breakpoint or the end of the program is reached.
Step OverExecutes one source line of a program. If the line is a function call, executes the entire function then stops.
Step IntoExecutes one source line of a program. If the line is a function call, executes the program up to the function’s first statement and stops.
Step OutExecutes one source line of a program. If the line is a function call, executes the functions and returns control to the caller.
Run to CursorRuns the current project to the cursor’s location in the file and stop program execution.
Set PC at cursorSets the program counter (PC) value to the line address of the cursor.
Focus Cursor at PCMoves the cursor to the current PC address and centers this address in the window.