Beefy Boxes and Bandwidth Generously Provided by pair Networks
Your skill will accomplish
what the force of many cannot
 
PerlMonks  

Re: Debugger demos/snippets

by LanX (Saint)
on Sep 02, 2021 at 13:11 UTC ( [id://11136367]=note: print w/replies, xml ) Need Help??


in reply to Debugger demos/snippets

To answer my own question, this seems to work:

use strict; use warnings; BEGIN { push @DB::typeahead,"b testsub","r"; } sub testsub { warn "inside"; } warn "outside"; testsub();

> perl -d d:/tmp/pm/db_demo.pl Loading DB routines from perl5db.pl version 1.57 Editor support enabled. Enter h or 'h h' for help, or 'perldoc perldebug' for more help. auto(-2) DB<1> b testsub auto(-1) DB<2> r outside at d:/tmp/pm/db_demo.pl line 14. at d:/tmp/pm/db_demo.pl line 14. DB<2> s inside at d:/tmp/pm/db_demo.pl line 10. at d:/tmp/pm/db_demo.pl line 10. main::testsub() called at d:/tmp/pm/db_demo.pl line 16 DB<2>

all it needs is more syntactic sugar to be able to read a history file.

and a wrapper module could handle the fact that

> @DB::typeahead is not a supported interface and is subject to change in the future

update

here a list of older discussions regarding typeahead, the older the better: click <Search>

Cheers Rolf
(addicted to the Perl Programming Language :)
Wikisyntax for the Monastery

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://11136367]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others pondering the Monastery: (4)
As of 2024-04-19 20:51 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found