]> git.vpit.fr Git - perl/modules/B-RecDeparse.git/blobdiff - lib/B/RecDeparse.pm
Remove empty POD sections
[perl/modules/B-RecDeparse.git] / lib / B / RecDeparse.pm
index fd52f9763ab47af6376a35bdb4c2f900e15e4444..4df9dffb441b183da5acd8a67e64507b6e6f3d76 100644 (file)
@@ -17,20 +17,27 @@ B::RecDeparse - Deparse recursively into subroutines.
 
 =head1 VERSION
 
-Version 0.06
+Version 0.07
 
 =cut
 
-our $VERSION = '0.06';
+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
@@ -42,7 +49,12 @@ Besides the constructor syntax, everything should work the same for the two modu
 
 =head1 METHODS
 
-=head2 C<< new < deparse => [ @B__Deparse_opts ], level => $level > >>
+=head2 C<new>
+
+    my $brd = B::RecDeparse->new(
+     deparse => \@B__Deparse_opts,
+     level   => $level,
+    );
 
 The L<B::RecDeparse> object constructor.
 You can specify the underlying L<B::Deparse> constructor arguments by passing a string or an array reference as the value of the C<deparse> key.
@@ -207,20 +219,37 @@ sub pp_gv {
  return $body;
 }
 
-=head2 C<compile>
+=pod
+
+The following functions and methods from L<B::Deparse> are reimplemented by this module :
+
+=over 4
+
+=item *
+
+C<compile>
+
+=item *
+
+C<init>
+
+=item *
+
+C<deparse_sub>
+
+=item *
 
-=head2 C<init>
+C<pp_entersub>
 
-=head2 C<deparse_sub>
+=item *
 
-=head2 C<pp_entersub>
+C<pp_refgen>
 
-=head2 C<pp_refgen>
+=item *
 
-=head2 C<pp_gv>
+C<pp_gv>
 
-Functions and methods from L<B::Deparse> reimplemented by this module.
-Never call them directly.
+=back
 
 Otherwise, L<B::RecDeparse> inherits all methods from L<B::Deparse>.