line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Perl::Critic::Policy::Freenode::Each; |
2
|
|
|
|
|
|
|
|
3
|
1
|
|
|
1
|
|
773
|
use strict; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
33
|
|
4
|
1
|
|
|
1
|
|
5
|
use warnings; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
30
|
|
5
|
|
|
|
|
|
|
|
6
|
1
|
|
|
1
|
|
6
|
use parent 'Perl::Critic::Policy::Community::Each'; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
6
|
|
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
our $VERSION = 'v1.0.1'; |
9
|
|
|
|
|
|
|
|
10
|
0
|
|
|
0
|
1
|
|
sub default_themes { 'freenode' } |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
1; |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
=head1 NAME |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
Perl::Critic::Policy::Freenode::Each - Don't use each to iterate through a hash |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=head1 DESCRIPTION |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
Legacy C<freenode> theme policy alias. |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
=head1 POLICY MOVED |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
This policy has been moved to the C<community> theme and renamed to |
25
|
|
|
|
|
|
|
L<Perl::Critic::Policy::Community::Each>. |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
=head1 AFFILIATION |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
This policy is part of L<Perl::Critic::Freenode>. |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
=head1 CONFIGURATION |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
This policy is not configurable except for the standard options. |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
=head1 AUTHOR |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
Dan Book, C<dbook@cpan.org> |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
Copyright 2015, Dan Book. |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
This library is free software; you may redistribute it and/or modify it under |
44
|
|
|
|
|
|
|
the terms of the Artistic License version 2.0. |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
=head1 SEE ALSO |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
L<Perl::Critic>, L<Perl::Critic::Community> |