in reply to Using the perl debugger
into this:my $x = 23; die "blaagh!";
then execute a goto in the debugger. Perl's goto is insanely powerful. Unfortunately, you would more or less have to parse the script to do this without introducing syntax errors (think multiline statements), so you're probably hosed.LINE1: my $x = 23; LINE2: die "blaagh!"
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Using the perl debugger
by Anonymous Monk on Mar 30, 2009 at 16:54 UTC | |
|
Re^2: Using the perl debugger
by avilella (Initiate) on Mar 30, 2009 at 16:55 UTC | |
by educated_foo (Vicar) on Mar 30, 2009 at 17:11 UTC | |
|
Re^2: Using the perl debugger
by Anonymous Monk on Mar 30, 2009 at 16:51 UTC |