Use this command to step over current statement of
code and run to next statement when debugging.
- If you issue the Step Over command when the
execution point is located on a function call, the debugger runs
that function at full speed, then positions the execution point on
the statement that follows the function call.
- If you issue Step Over when the execution point
is positioned on the closing brace of a function, the function
returns from its call, and the execution point is placed on the
statement following the function call.
|