Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

perl::critic::policy::variables::prohibitreusednames(3) [centos man page]

Perl::Critic::Policy::Variables::ProhibitReusedNames(3) User Contributed Perl DocumentationPerl::Critic::Policy::Variables::ProhibitReusedNames(3)

NAME
Perl::Critic::Policy::Variables::ProhibitReusedNames - Do not reuse a variable name in a lexical scope AFFILIATION
This Policy is part of the core Perl::Critic distribution. DESCRIPTION
It's really hard on future maintenance programmers if you reuse a variable name in a lexical scope. The programmer is at risk of confusing which variable is which. And, worse, the programmer could accidentally remove the inner declaration, thus silently changing the meaning of the inner code to use the outer variable. my $x = 1; for my $i (0 .. 10) { my $x = $i+1; # not OK, "$x" reused } With "use warnings" in effect, Perl will warn you if you reuse a variable name at the same scope level but not within nested scopes. Like so: % perl -we 'my $x; my $x' "my" variable $x masks earlier declaration in same scope at -e line 1. This policy takes that warning to a stricter level. CAVEATS
Crossing subroutines This policy looks across subroutine boundaries. So, the following may be a false positive for you: sub make_accessor { my ($self, $fieldname) = @_; return sub { my ($self) = @_; # false positive, $self declared as reused return $self->{$fieldname}; } } This is intentional, though, because it catches bugs like this: my $debug_mode = 0; sub set_debug { my $debug_mode = 1; # accidental redeclaration } I've done this myself several times -- it's a strong habit to put that "my" in front of variables at the start of subroutines. Performance The current implementation walks the tree over and over. For a big file, this can be a huge time sink. I'm considering rewriting to search the document just once for variable declarations and cache the tree walking on that single analysis. CONFIGURATION
This policy has a single option, "allow", which is a list of names to never count as duplicates. It defaults to containing $self and $class. You add to this by adding something like this to your .perlcriticrc: [Variables::ProhibitReusedNames] allow = $self $class @blah AUTHOR
Chris Dolan <cdolan@cpan.org> This policy is inspired by <http://use.perl.org/~jdavidb/journal/37548>. Java does not allow you to reuse variable names declared in outer scopes, which I think is a nice feature. COPYRIGHT
Copyright (c) 2008-2011 Chris Dolan 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. perl v5.16.3 2014-06-09 Perl::Critic::Policy::Variables::ProhibitReusedNames(3)

Check Out this Related Man Page

Perl::Critic::Policy::RegularExpressions::ProhibitEnumerUserCContributed PPerl::Critic::Policy::RegularExpressions::ProhibitEnumeratedClasses(3pm)

NAME
Perl::Critic::Policy::RegularExpressions::ProhibitEnumeratedClasses - Use named character classes instead of explicit character lists. AFFILIATION
This Policy is part of the core Perl::Critic distribution. DESCRIPTION
This policy is not for everyone! If you are working in pure ASCII, then disable it now or you may see some false violations. On the other hand many of us are working in a multilingual world with an extended character set, probably Unicode. In that world, patterns like "m/[A-Z]/" can be a source of bugs when you really meant "m/p{IsUpper}/". This policy catches a selection of possible incorrect character class usage. Specifically, the patterns are: "[ f ]" vs. "s" "[ ]" vs. "s" (because many people forget "f") "[A-Za-z0-9_]" vs. "w" "[A-Za-z]" vs. "p{IsAlphabetic}" "[A-Z]" vs. "p{IsUpper}" "[a-z]" vs. "p{IsLower}" "[0-9]" vs. "d" "[^w]" vs. "W" "[^s]" vs. "S" CONFIGURATION
This Policy is not configurable except for the standard options. CREDITS
Initial development of this policy was supported by a grant from the Perl Foundation. AUTHOR
Chris Dolan <cdolan@cpan.org> COPYRIGHT
Copyright (c) 2007-2011 Chris Dolan. Many rights reserved. 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 perl v5.14.2 2012-0Perl::Critic::Policy::RegularExpressions::ProhibitEnumeratedClasses(3pm)
Man Page