How can I interact with the Perl debugger API?

Is there a way to bundle the Perl debugger API that perl uses to control its debugging programmatically?

+3
source share
4 answers

All this in perldebug , perldebguts and DB .

In addition, I wrote Create a Perl Debugger That Should Run You. I have a section on Perl custom debuggers in Mastering Perl .

+5
source

Perl API , , , , Devel:: ebug, API . , , Enbugger.

+5

perl perldoc perldebug perldoc perldebtut. -d, .. perl -d myscript.pl.

+1

. " Perl". 20.5.1 โ†’ " ", . perldoc perlvar $PERLDB.

, DB: DB().

0

Source: https://habr.com/ru/post/1718437/


All Articles