X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=lib%2FB%2FRecDeparse.pm;h=db96fd6b763ea091a5707db1ce986c3c6542cdc8;hb=9cd527f20a3c5db1da76cc84685929819e1cc136;hp=da731d951e4a8e602565410e22ad334a75886bc4;hpb=f92b75386a7476c420e66629a5a57d1882c0c2f4;p=perl%2Fmodules%2FB-RecDeparse.git diff --git a/lib/B/RecDeparse.pm b/lib/B/RecDeparse.pm index da731d9..db96fd6 100644 --- a/lib/B/RecDeparse.pm +++ b/lib/B/RecDeparse.pm @@ -1,5 +1,7 @@ package B::RecDeparse; +use 5.008; + use strict; use warnings; @@ -14,11 +16,11 @@ B::RecDeparse - Deparse recursively into subroutines. =head1 VERSION -Version 0.01 +Version 0.03 =cut -our $VERSION = '0.01'; +our $VERSION = '0.03'; =head1 SYNOPSIS @@ -32,7 +34,7 @@ our $VERSION = '0.01'; =head1 DESCRIPTION -This module extends L by making you recursively replace subroutine calls encountered when deparsing. +This module extends L by making it recursively replace subroutine calls encountered when deparsing. Please refer to L documentation for what to do and how to do it. Besides the constructor syntax, everything should work the same for the two modules. @@ -80,7 +82,7 @@ sub new { } sub _recurse { - return $_[0]->{brd_level} >= 0 && $_[0]->{brd_cur} >= $_[0]->{brd_level} + return $_[0]->{brd_level} < 0 || $_[0]->{brd_cur} < $_[0]->{brd_level} } sub compile { @@ -110,7 +112,7 @@ if (FOOL_SINGLE_DELIM) { no warnings 'redefine'; *B::Deparse::single_delim = sub { my $body = $_[2]; - if ($body =~ s/^$key//) { + if ((caller 1)[0] eq __PACKAGE__ and $body =~ s/^$key//) { return $body; } else { $oldsd->(@_); @@ -120,31 +122,33 @@ if (FOOL_SINGLE_DELIM) { sub pp_entersub { my $self = shift; - $self->{brd_sub} = 1; - my $body = $self->SUPER::pp_entersub(@_); - $self->{brd_sub} = 0; - $body =~ s/^&\s*(\w)/$1/ if not $self->_recurse; + my $body = do { + local $self->{brd_sub} = 1; + $self->SUPER::pp_entersub(@_); + }; + $body =~ s/^&\s*(\w)/$1/ if $self->_recurse; return $body; } sub pp_refgen { my $self = shift; - $self->{brd_sub} = 0; - my $body = $self->SUPER::pp_refgen(@_); - $self->{brd_sub} = 1; - return $body; + return do { + local $self->{brd_sub} = 0; + $self->SUPER::pp_refgen(@_); + } } sub pp_gv { my $self = shift; my $body; - if ($self->{brd_sub} <= 0 || $self->_recurse) { + if ($self->{brd_sub} <= 0 || !$self->_recurse) { $body = $self->SUPER::pp_gv(@_); } else { my $gv = $self->gv_or_padgv($_[0]); - ++$self->{brd_cur}; - $body = 'sub ' . $self->indent($self->deparse_sub($gv->CV)); - --$self->{brd_cur}; + $body = do { + local @{$self}{qw/brd_sub brd_cur/} = (0, $self->{brd_cur} + 1); + 'sub ' . $self->indent($self->deparse_sub($gv->CV)); + }; if (FOOL_SINGLE_DELIM) { $body = $key . $body; } else { @@ -164,7 +168,7 @@ sub pp_gv { =head2 C -Functions and methods from L overriden by this module. Never call them directly. +Functions and methods from L reimplemented by this module. Never call them directly. Otherwise, L inherits all methods from L. @@ -180,7 +184,7 @@ L (standard since perl 5), L (since perl 5.00307) and L >>, L. -You can contact me by mail or on #perl @ FreeNode (vincent or Prof_Vince). +You can contact me by mail or on C (vincent). =head1 BUGS