← Index
NYTProf Performance Profile   « line view »
For /Users/timbo/perl5/perlbrew/perls/perl-5.18.2/bin/perlcritic
  Run on Sat Mar 19 22:12:22 2016
Reported on Sat Mar 19 22:14:11 2016

Filename/Users/timbo/perl5/perlbrew/perls/perl-5.18.2/lib/site_perl/5.18.2/Perl/Critic/Policy/Variables/ProhibitReusedNames.pm
StatementsExecuted 20 statements in 440µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11116µs16µsPerl::Critic::Policy::Variables::ProhibitReusedNames::::BEGIN@10Perl::Critic::Policy::Variables::ProhibitReusedNames::BEGIN@10
1118µs29µsPerl::Critic::Policy::Variables::ProhibitReusedNames::::BEGIN@14Perl::Critic::Policy::Variables::ProhibitReusedNames::BEGIN@14
1117µs11µsPerl::Critic::Policy::Variables::ProhibitReusedNames::::BEGIN@12Perl::Critic::Policy::Variables::ProhibitReusedNames::BEGIN@12
1117µs433µsPerl::Critic::Policy::Variables::ProhibitReusedNames::::BEGIN@16Perl::Critic::Policy::Variables::ProhibitReusedNames::BEGIN@16
1117µs59µsPerl::Critic::Policy::Variables::ProhibitReusedNames::::BEGIN@17Perl::Critic::Policy::Variables::ProhibitReusedNames::BEGIN@17
1117µs18µsPerl::Critic::Policy::Variables::ProhibitReusedNames::::BEGIN@11Perl::Critic::Policy::Variables::ProhibitReusedNames::BEGIN@11
1117µs146µsPerl::Critic::Policy::Variables::ProhibitReusedNames::::BEGIN@13Perl::Critic::Policy::Variables::ProhibitReusedNames::BEGIN@13
1116µs7µsPerl::Critic::Policy::Variables::ProhibitReusedNames::::default_severityPerl::Critic::Policy::Variables::ProhibitReusedNames::default_severity
1115µs5µsPerl::Critic::Policy::Variables::ProhibitReusedNames::::supported_parametersPerl::Critic::Policy::Variables::ProhibitReusedNames::supported_parameters
0000s0sPerl::Critic::Policy::Variables::ProhibitReusedNames::::__ANON__[:71]Perl::Critic::Policy::Variables::ProhibitReusedNames::__ANON__[:71]
0000s0sPerl::Critic::Policy::Variables::ProhibitReusedNames::::applies_toPerl::Critic::Policy::Variables::ProhibitReusedNames::applies_to
0000s0sPerl::Critic::Policy::Variables::ProhibitReusedNames::::default_themesPerl::Critic::Policy::Variables::ProhibitReusedNames::default_themes
0000s0sPerl::Critic::Policy::Variables::ProhibitReusedNames::::violatesPerl::Critic::Policy::Variables::ProhibitReusedNames::violates
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1##############################################################################
2# $URL$
3# $Date$
4# $Author$
5# $Revision$
6##############################################################################
7
8package Perl::Critic::Policy::Variables::ProhibitReusedNames;
9
10240µs116µs
# spent 16µs within Perl::Critic::Policy::Variables::ProhibitReusedNames::BEGIN@10 which was called: # once (16µs+0s) by Module::Pluggable::Object::_require at line 10
use 5.006001;
11220µs229µs
# spent 18µs (7+11) within Perl::Critic::Policy::Variables::ProhibitReusedNames::BEGIN@11 which was called: # once (7µs+11µs) by Module::Pluggable::Object::_require at line 11
use strict;
# spent 18µs making 1 call to Perl::Critic::Policy::Variables::ProhibitReusedNames::BEGIN@11 # spent 11µs making 1 call to strict::import
12220µs215µs
# spent 11µs (7+4) within Perl::Critic::Policy::Variables::ProhibitReusedNames::BEGIN@12 which was called: # once (7µs+4µs) by Module::Pluggable::Object::_require at line 12
use warnings;
# spent 11µs making 1 call to Perl::Critic::Policy::Variables::ProhibitReusedNames::BEGIN@12 # spent 4µs making 1 call to warnings::import
13222µs2285µs
# spent 146µs (7+139) within Perl::Critic::Policy::Variables::ProhibitReusedNames::BEGIN@13 which was called: # once (7µs+139µs) by Module::Pluggable::Object::_require at line 13
use List::MoreUtils qw(part);
# spent 146µs making 1 call to Perl::Critic::Policy::Variables::ProhibitReusedNames::BEGIN@13 # spent 139µs making 1 call to Exporter::Tiny::import
14223µs250µs
# spent 29µs (8+21) within Perl::Critic::Policy::Variables::ProhibitReusedNames::BEGIN@14 which was called: # once (8µs+21µs) by Module::Pluggable::Object::_require at line 14
use Readonly;
# spent 29µs making 1 call to Perl::Critic::Policy::Variables::ProhibitReusedNames::BEGIN@14 # spent 21µs making 1 call to Exporter::import
15
16224µs2858µs
# spent 433µs (7+426) within Perl::Critic::Policy::Variables::ProhibitReusedNames::BEGIN@16 which was called: # once (7µs+426µs) by Module::Pluggable::Object::_require at line 16
use Perl::Critic::Utils qw{ :severities :classification :data_conversion };
# spent 433µs making 1 call to Perl::Critic::Policy::Variables::ProhibitReusedNames::BEGIN@16 # spent 426µs making 1 call to Exporter::import
172276µs2110µs
# spent 59µs (7+52) within Perl::Critic::Policy::Variables::ProhibitReusedNames::BEGIN@17 which was called: # once (7µs+52µs) by Module::Pluggable::Object::_require at line 17
use base 'Perl::Critic::Policy';
# spent 59µs making 1 call to Perl::Critic::Policy::Variables::ProhibitReusedNames::BEGIN@17 # spent 52µs making 1 call to base::import
18
191600nsour $VERSION = '1.121';
20
21#-----------------------------------------------------------------------------
22
2312µs129µsReadonly::Scalar my $DESC => q{Reused variable name in lexical scope: };
# spent 29µs making 1 call to Readonly::Scalar
2411µs121µsReadonly::Scalar my $EXPL => q{Invent unique variable names};
# spent 21µs making 1 call to Readonly::Scalar
25
26#-----------------------------------------------------------------------------
27
28
# spent 5µs within Perl::Critic::Policy::Variables::ProhibitReusedNames::supported_parameters which was called: # once (5µs+0s) by Perl::Critic::Policy::new at line 88 of Perl/Critic/Policy.pm
sub supported_parameters {
29 return (
30 {
3117µs name => 'allow',
32 description => 'The variables to not consider as duplicates.',
33 default_string => '$self $class', ## no critic (RequireInterpolationOfMetachars)
34 behavior => 'string list',
35 },
36 );
37}
38
3912µs
# spent 7µs (6+1) within Perl::Critic::Policy::Variables::ProhibitReusedNames::default_severity which was called: # once (6µs+1µs) by Perl::Critic::Policy::get_severity at line 331 of Perl/Critic/Policy.pm
sub default_severity { return $SEVERITY_MEDIUM }
40sub default_themes { return qw( core bugs ) }
41sub applies_to { return 'PPI::Statement::Variable' }
42
43#-----------------------------------------------------------------------------
44
45sub violates {
46 my ( $self, $elem, undef ) = @_;
47 return if 'local' eq $elem->type;
48
49 my $allow = $self->{_allow};
50 my @names = grep { not $allow->{$_} } $elem->variables();
51 my $names = [ @names ];
52 # Assert: it is impossible for @$names to be empty in valid Perl syntax
53 # But if it IS empty, this code should still work but will be inefficient
54
55 # walk up the PDOM looking for declared variables in the same
56 # scope or outer scopes quit when we hit the root or when we find
57 # violations for all vars (the latter is a shortcut)
58 my $outer = $elem;
59 my @violations;
60 while (1) {
61 my $up = $outer->sprevious_sibling;
62 if (not $up) {
63 $up = $outer->parent;
64 }
65 last if !$up; # top of PDOM, we're done
66 $outer = $up;
67
68 if ($outer->isa('PPI::Statement::Variable') && 'local' ne $outer->type) {
69 my %vars = map {$_ => undef} $outer->variables;
70 my $hits;
71 ($hits, $names) = part { exists $vars{$_} ? 0 : 1 } @{$names};
72 if ($hits) {
73 push @violations, map { $self->violation( $DESC . $_, $EXPL, $elem ) } @{$hits};
74 last if not $names; # found violations for ALL variables, we're done
75 }
76 }
77 }
78 return @violations;
79}
80
8113µs1;
82
83__END__