Help for this page

Select Code to Download


  1. or download this
      # Find all the named subroutines
      my @subs = $Document->find( 
            sub { $_[1]->isa('PPI::Statement::Sub') and $_[1]->name }
            );
    
  2. or download this
    my @subs;
    
    ...
                             push @subs, $_[1]->name();
                         }
                     });