Prev | Next |
Run Panel
The 'Run' panel provides a set of buttons for building and running an application that is being analyzed. After making modifications to the code base, you can simply click on 'Build', then click on buttons to begin execution of the updated application, pausing or stepping through code as required. The active Analyzer Script will determine the behavior of the debugger tools, by specifying the commands that are executed as well as the settings and parameters for those commands.
Available Facilities
Facility |
Description |
See also |
---|---|---|
Start |
Click on the drop-down arrow to display a short menu of commands:
|
Run the Debugger |
Pause |
Pause execution of the application being debugged. |
Run the Debugger |
Step Over |
Execute the next line of source code, without pausing inside any methods called by that line. The execution point will move to the next source line in the current context. |
Run the Debugger |
Step In |
Execute the next line of source code, stepping into any method that is called. Execution is paused before executing the first executable line in the called method. If source code for the called method is not available, the debugger will return immediately to the calling code. |
Run the Debugger |
Step Out |
Automatically run to the end of the current context/method and return to the calling context. Execution will pause again, upon return to the calling context. |
Run the Debugger |
Stop |
Clicking on the drop-down arrow displays a short menu providing options to terminate debugging the application.
|
Run the Debugger |