When you right click a procedure, a pop-up menu appears with the following items:
Pop-up menu for a procedure | |
Menu Item | Description |
Run To This Line |
Runs the program to right-clicked line if there is executable code there. Note: The debugger will set a special breakpoint there, but there is no guarantee that the program will actually stop there, because it is up to the program logic. |
Change PC To This Line |
If the right-clicked line contains executable code and it is within the same procedure in which the program is currently stopped, changes the program counter to there. |
Insert/Remove Breakpoint |
Toggles a breakpoint at the right-clicked line if there is executable code there. |
Enable/Disable Breakpoint |
If there is a breakpoint at the right-clicked line, toggles its status (enabled or disabled). |
Breakpoint Window |
Opens the Breakpoints window. See
Chapter 20, "Breakpoints window". |
Go To Definition |
If there is source code for the procedure, views the source code in the source pane. |
Browse Callers |
Opens a browse window to show the callers of the procedure. |
Browse Callees |
Opens a browse window to show the callees of the procedure. |
Tree Browser (Procedures) |
Opens a tree browser window to show the calling relationships of the procedure. |
Edit This Procedure |
Opens an editor window on the procedure's source file, if it's available. |
Edit File |
If the current file is a source file, brings up an editor window on it. |
Properties |
Opens a dialog box to show the basic information about the current file (e.g. its name, language type, the right click line number, the current target), and the basic information about the procedure (e.g. its size, address, and whether its scope is static or global). |