X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=lib%2FB%2FRecDeparse.pm;h=f9964207f1314ad5776338d58ea7b9dcf5108f2f;hb=b8b7412248e3d4fc5b193e5f756e1139a4b540bf;hp=35333fa72f97e900b60c64f2c35aa830602e1d6a;hpb=a62d5a0296ab9eb32539e1644bf11bf52b09ab9f;p=perl%2Fmodules%2FB-RecDeparse.git diff --git a/lib/B/RecDeparse.pm b/lib/B/RecDeparse.pm index 35333fa..f996420 100644 --- a/lib/B/RecDeparse.pm +++ b/lib/B/RecDeparse.pm @@ -1,6 +1,6 @@ package B::RecDeparse; -use 5.008; +use 5.008001; use strict; use warnings; @@ -17,20 +17,27 @@ B::RecDeparse - Deparse recursively into subroutines. =head1 VERSION -Version 0.04 +Version 0.07 =cut -our $VERSION = '0.04'; +our $VERSION = '0.07'; =head1 SYNOPSIS - perl -MO=RecDeparse,deparse,[@B__Deparse_opts],level,-1 [ -e '...' | bleh.pl ] + # Deparse recursively a Perl one-liner : + $ perl -MO=RecDeparse,deparse,@B__Deparse_opts,level,-1 -e '...' - # Or as a module : + # Or a complete Perl script : + $ perl -MO=RecDeparse,deparse,@B__Deparse_opts,level,-1 x.pl + + # Or a single code reference : use B::RecDeparse; - my $brd = B::RecDeparse->new(deparse => [ @b__deparse_opts ], level => $level); + my $brd = B::RecDeparse->new( + deparse => \@B__Deparse_opts, + level => $level, + ); my $code = $brd->coderef2text(sub { ... }); =head1 DESCRIPTION @@ -183,10 +190,12 @@ sub pp_gv { my $gv = $self->gv_or_padgv($_[0]); my $name = $gv->NAME; + my $cv = $gv->CV; my $seen = $self->{brd_seen}; my $body; - if ($self->{brd_sub} <= 0 || !$self->_recurse || $seen->{$name}) { + if (!$self->{brd_sub} or !$self->_recurse or $seen->{$name} or !$$cv + or !$cv->isa('B::CV') or $cv->ROOT->isa('B::NULL')) { $body = $self->SUPER::pp_gv(@_); } else { $body = do { @@ -228,6 +237,8 @@ An object-oriented module shouldn't export any function, and so does this one. =head1 DEPENDENCIES +L 5.8.1. + L (standard since perl 5), L (since perl 5.00307) and L (since perl 5.005). =head1 AUTHOR @@ -251,7 +262,7 @@ Tests code coverage report is available at L