The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Devel::hdb::App::Control - Control execution of the debugged program

DESCRIPTION

Registers routes for methods to control execution of the debugged program

Routes

/stepin

Causes the debugger to execute the current statement and pause before the next. If the current statement involves a function call, execution stops at the first line inside the called function.

/stepover

Causes the debugger to execute the current statement and pause before the next. If the current statement involves function calls, these functions are run to completion and execution stops before the next statement at the current stack level. If execution of these functions leaves the current stack frame, usually from an exception caught at a higher frame or a goto, execution pauses at the first statement following the unwinding.

/steoput

Causes the debugger to start running continuously until the current stack frame exits.

/continue

Causes the debugger to start running continuously until it encounters another breakpoint. /continue accepts one optional argument nostop; if true, the debugger gets out of the way of the debugged process and will not stop for any reason.

SEE ALSO

Devel::hdb

AUTHOR

Anthony Brummett <brummett@cpan.org>

COPYRIGHT

Copyright 2013, Anthony Brummett. This module is free software. It may be used, redistributed and/or modified under the same terms as Perl itself.