logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

PPI::Structure::Subscript - Braces that represent an array or hash subscript

Author

       Adam Kennedy <adamk@cpan.org>

Description

       "PPI::Structure::Subscript" is the class used for square and curly braces that specify one element of an
       array or hash (or a slice/subset of an array or hash)

Inheritance

         PPI::Structure::Subscript
         isa PPI::Structure
             isa PPI::Node
                 isa PPI::Element

Methods

       "PPI::Structure::Subscript" has no methods beyond those provided by the standard PPI::Structure,
       PPI::Node and PPI::Element methods.

Name

       PPI::Structure::Subscript - Braces that represent an array or hash subscript

Support

       See the support section in the main module.

Synopsis

         # The end braces for all of the following are subscripts
         $foo->[...]
         $foo[...]
         $foo{...}[...]
         $foo->{...}
         $foo{...}
         $foo[]{...}

See Also