In the debugger, you can move the execution point to set the next statement of code to be executed. An arrowhead in the margin of a source window marks the current location of the execution point. By moving the execution point, you can skip over a portion of code or return to a line previously executed. This can be useful in some situations for example, if you want to skip a section of code that contains a known bug and continue debugging other sections.
Caution Changing the execution point causes the program counter to jump directly to the new location. Use this command with caution. Note that:
You cannot set the execution point while your application is actively running. To set the next statement, the debugger must be in break mode.
To set the next statement to execute
If the current execution point is in the same source file as the statement you want to set, you can move the execution point by dragging the marker arrow:
To set the next statement to execute (alternative method)