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 :
| Command |
Name |
Description |
|---|---|---|
Resume |
Resumes a suspended script. |
|
Step Into |
Steps into the highlighted statement. |
|
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. |
|
Step Return |
Steps out of the current method. This option stops execution after exiting the current method. |
|
Terminate |
Terminates the selected debug target. |