Provided by: libppix-editortools-perl_0.18-1_all bug

NAME

       PPIx::EditorTools::Outline - Collect use pragmata, modules, subroutiones, methods,
       attributes

SYNOPSIS

         my $outline = PPIx::EditorTools::Outline->new->find(
               code => "package TestPackage;\nsub x { 1;\n"
             );
        print Dumper $outline;

DESCRIPTION

       Return a list of pragmatas, modules, methods, attributes of a "PPI::Document".

METHODS

new()

           Constructor. Generally shouldn't be called with any arguments.

       •   find()

                   find( ppi => PPI::Document $ppi )
           or
                   find( code => Str $code )

           Accepts either a "PPI::Document" to process or a string containing the code (which
           will be converted into a "PPI::Document") to process.  Return a reference to a hash.

   Internal Methods
       •   _Moo_Attributes

       •   _Moo_PkgName

AUTHORS

       Gabor Szabo <gabor@szabgab.com>

   CONTRIBUTORS
       Kevin Dawson <bowtie@cpan.org>

       buff3r <buff3r@>

SEE ALSO

       This class inherits from "PPIx::EditorTools".  Also see App::EditorTools, Padre, and PPI.