Debug View

The Debug View allows you to manage the debugging of a script in the workbench. It displays the stack frame for the suspended threads for each target you are debugging. The stack frame shows the whole execution path. This view offers commands to manage scripts execution. These execution control commands allow you to change the execution state of code being executed.

Debug view :

Debug view

Execution Control Commands

Command

Name

Description

Resume button

Resume

Resumes a suspended script.

Step Into button

Step Into

Steps into the highlighted statement.

Step Over button

Step Over

Steps over the highlighted statement. Execution will continue at the next line either in the same method or (if you are at the end of a method) it will continue in the method from which the current method was called.

The cursor jumps to the declaration of the method and selects this line.

Run to Return button

Step Return

Steps out of the current method. This option stops execution after exiting the current method.

Terminate button

Terminate

Terminates the selected debug target.

Related concepts

Safe X3 Debugger
Safe X3 views