DADiSP Worksheet Functions > Function Categories > Debugging > DBSTEP

 

DBSTEP

Purpose:

Steps the debugger to the next line.

Syntax:

DBSTEP

Returns:

Nothing.

Example:

dbstop myfunc

dbcont

 

myfunc(10)

dbstep

 

sets a breakpoint in the SPL routine named myfunc and starts debugging. The myfunc routine is then called and DBSTEP steps the debugger to the next line.

Remarks:

Use DBCONT to start the debugging process. Use DBSTEP or DBCONT to resume execution after a breakpoint has been reached. Use DBSTATUS for information on the current breakpoint. Use DBQUIT to exit debugging.

 

Use DBSTEPI to step into the SPL routine at the current line number. Use DBSTEPO to step out of the current function.

 

Any DADiSP command or function can be executed once a breakpoint has been reached.

See Also:

DBCLEAR

DBCONT

DBDOWN

DBQUIT

DBSTACK

DBSTATUS

DBSTEPI

DBSTEPO

DBSTOP

DBUP

LOCALS

VARS