############################################################################## # $URL: http://perlcritic.tigris.org/svn/perlcritic/trunk/distributions/Perl-Critic/lib/Perl/Critic/Policy/BuiltinFunctions/ProhibitLvalueSubstr.pm $ # $Date: 2011-02-14 19:31:57 -0600 (Mon, 14 Feb 2011) $ # $Author: clonezone $ # $Revision: 4040 $ ############################################################################## package Perl::Critic::Policy::BuiltinFunctions::ProhibitLvalueSubstr; use 5.006001; use strict; use warnings; use Readonly; use Perl::Critic::Utils qw{ :severities :classification :language }; use base 'Perl::Critic::Policy'; our $VERSION = '1.113'; #----------------------------------------------------------------------------- Readonly::Scalar my $DESC => q{Lvalue form of "substr" used}; Readonly::Scalar my $EXPL => [ 165 ]; Readonly::Scalar my $ASSIGNMENT_PRECEDENCE => precedence_of( q{=} ); #----------------------------------------------------------------------------- sub supported_parameters { return () } sub default_severity { return $SEVERITY_MEDIUM } sub default_themes { return qw( core maintenance pbp ) } sub applies_to { return 'PPI::Token::Word' } #----------------------------------------------------------------------------- sub violates { my ($self, $elem, undef) = @_; return if $elem ne 'substr'; return if ! is_function_call($elem); my $sib = $elem; while ($sib = $sib->snext_sibling()) { if ( $sib->isa( 'PPI::Token::Operator' ) ) { my $rslt = $ASSIGNMENT_PRECEDENCE <=> precedence_of( $sib->content() ); return if $rslt < 0; return $self->violation( $DESC, $EXPL, $sib ) if $rslt == 0; } } return; #ok! } 1; #----------------------------------------------------------------------------- __END__ =pod =head1 NAME Perl::Critic::Policy::BuiltinFunctions::ProhibitLvalueSubstr - Use 4-argument C instead of writing C. =head1 AFFILIATION This Policy is part of the core L distribution. =head1 DESCRIPTION Conway discourages the use of C as an lvalue, instead recommending that the 4-argument version of C be used instead. substr($something, 1, 2) = $newvalue; # not ok substr($something, 1, 2, $newvalue); # ok =head1 CONFIGURATION This Policy is not configurable except for the standard options. =head1 AUTHOR Graham TerMarsch =head1 COPYRIGHT Copyright (c) 2005-2011 Graham TerMarsch. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. =cut # Local Variables: # mode: cperl # cperl-indent-level: 4 # fill-column: 78 # indent-tabs-mode: nil # c-indentation-style: bsd # End: # ex: set ts=8 sts=4 sw=4 tw=78 ft=perl expandtab shiftround :