CL Programming

Stepping over Program Objects

You can step over program objects by using:

Using F10(Step)

You can use F10 (Step) on the Display Module Source display to step over a called program object in a debug session. If the next statement to be run is a CALL statement to another program object, then pressing F10 (Step) will cause the called program object to run to completion before the calling program object is stopped again.

Using the Step Over Debug Command

Alternatively, you can use the STEP OVER debug command to step over a called program object in a debug session. To use the STEP OVER debug command, type:

STEP number-of-statements OVER

on the debug command line. Number-of-statements is the number of statements of the program object that you want to run in the next step before the program object is halted again. If one of the statements that are run contains a CALL statement to another program object, the ILE source debugger steps over the called program object.


[ Top of Page | Previous Page | Next Page | Table of Contents | Index ]