Debug Menu
Use the Debug menu to control execution of your code. The Debug menu commands and their resulting actions are listed in the following table.
Command | Function Key | Result |
---|---|---|
Continue | F9 | Continues code execution without interaction with the debugger. The debugger is activated if a breakpoint is encountered. |
Animate | Continues code execution, displaying and highlighting each line of code as it executes. | |
Halt Execution | Halts execution of code when in Animate mode only. | |
Step Into | F7 | Executes the current line of code. If the next instruction in the current line of code is a method call, the debugger displays the method and enables you to step through that method. |
Step Over | F8 | Executes the current line of code. |
Run To Caret | Ctrl+F8 | Executes code up to the line containing the caret. |
Run To Return | Shift+F8 | Executes code until the current function returns to its caller. |
Terminate | Terminates the debugger and your Jade application. | |
End | Terminates only the debugger. |