in reply to Re^2: Changing every subroutine in many perl scripts
in thread Changing every subroutine in many perl scripts
What are you trying to report? Are you trying to emit something for every executed function? In that case, close over the name of the wrapped function:
my @mars_subs = qw( add increment ); for my $sub (@mars_subs) { wrap $sub, pre => sub { print "Calling '$sub'\n"; }; }
Improve your skills with Modern Perl: the free book.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Changing every subroutine in many perl scripts
by nitin1704 (Sexton) on Jul 26, 2012 at 09:06 UTC |