12 February 2015

ISE script debugging


F9   - set line breakpoint - the script will pause when the designated line must be executed

F10 - step over - executes the current statement and then stop at the next statement. If the current statements is a function or script call then the debugger executes the whole function or script, and it stops at the next statement.

F11 - step into - executes the current statement and then stops at the next statement. If the current statement is a function or script call, then the debugger steps into that function or script.

SHIFT + F11 - step out - steps out of the current function and up one level if the function is nested. If in the main body, the script is executed to the end, or to the next breakpoint.

F5 - continue - continues execution to the end, or to the next breakpoint.

No comments:

Post a Comment