Why not adopt me?
NAME
Perl::ToPerl6::Utils::PPI - Utility functions for dealing with PPI objects.
DESCRIPTION
Provides classification of PPI::Elements.
INTERFACE SUPPORT
This is considered to be a public module. Any changes to its interface will go through a deprecation cycle.
IMPORTABLE SUBS
is_ppi_expression_or_generic_statement( $element )
-
Answers whether the parameter is an expression or an undifferentiated statement. I.e. the parameter either is a PPI::Statement::Expression or the class of the parameter is PPI::Statement and not one of its subclasses other than
Expression
. is_ppi_generic_statement( $element )
-
Answers whether the parameter is an undifferentiated statement, i.e. the parameter is a PPI::Statement but not one of its subclasses.
is_ppi_statement_subclass( $element )
-
Answers whether the parameter is a specialized statement, i.e. the parameter is a PPI::Statement but the class of the parameter is not PPI::Statement.
is_ppi_simple_statement( $element )
-
Answers whether the parameter represents a simple statement, i.e. whether the parameter is a PPI::Statement, PPI::Statement::Break, PPI::Statement::Include, PPI::Statement::Null, PPI::Statement::Package, or PPI::Statement::Variable.
AUTHOR
Jeffrey Goff <drforr@pobox.com>
AUTHOR EMERITUS
Elliot Shank <perl@galumph.com>
COPYRIGHT
Copyright (c) 2007-2011 Elliot Shank.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. The full text of this license can be found in the LICENSE file included with this module.