NAME
Perl::Critic::Pulp::Utils - shared helper code for the Pulp perlcritic add-on
SYNOPSIS
use Perl::Critic::Pulp::Utils;
DESCRIPTION
This is slightly preliminary, but works as far as it goes.
FUNCTIONS
Element Functions
$pkgelem = Perl::Critic::Pulp::Utils::elem_package ($elem)
-
$elem
is aPPI::Element
. Return thePPI::Statement::Package
containing$elem
, orundef
if$elem
is not in the scope of any package statement.The search upwards begins with the element preceding
$elem
, so if$elem
itself is aPPI::Statement::Package
then that's not the one returned, instead its containing package.
Policy Parameter Functions
Perl::Critic::Pulp::Utils::parameter_parse_version ($self, $parameter, $str)
-
This is designed for use as the
parser
field of a policysupported_parameters
entry for a parameter which is a version number.Parse
$str
with theversion.pm
module. If valid then set$self-
{$paramter->get_name}> to the resultingversion
object, if not then callthrow_parameter_value_exception
.
SEE ALSO
HOME PAGE
http://user42.tuxfamily.org/perl-critic-pulp/index.html
COPYRIGHT
Copyright 2008, 2009, 2010, 2011 Kevin Ryde
Perl-Critic-Pulp is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3, or (at your option) any later version.
Perl-Critic-Pulp is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with Perl-Critic-Pulp. If not, see <http://www.gnu.org/licenses/>.