]> 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 f9964207f1314ad5776338d58ea7b9dcf5108f2f..4df9dffb441b183da5acd8a67e64507b6e6f3d76 100644 (file)
@@ -49,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.
@@ -214,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>.