File Coverage

blib/lib/Perl/Lint/Policy/BuiltinFunctions/ProhibitStringySplit.pm
Criterion Covered Total %
statement 32 32 100.0
branch 10 10 100.0
condition 12 12 100.0
subroutine 6 6 100.0
pod 0 1 0.0
total 60 61 98.3


line stmt bran cond sub pod time code
1             package Perl::Lint::Policy::BuiltinFunctions::ProhibitStringySplit;
2 134     134   68499 use strict;
  134         195  
  134         3051  
3 134     134   423 use warnings;
  134         173  
  134         2425  
4 134     134   810 use Perl::Lint::Constants::Type;
  134         159  
  134         59685  
5 134     134   587 use parent "Perl::Lint::Policy";
  134         210  
  134         586  
6              
7             use constant {
8 134         28695 DESC => 'String delimiter used with "split"',
9             EXPL => 'Express it as a regex instead',
10 134     134   6613 };
  134         187  
11              
12             sub evaluate {
13 7     7 0 12 my ($class, $file, $tokens, $src, $args) = @_;
14              
15 7         7 my @violations;
16 7         22 for (my $i = 0; my $token = $tokens->[$i]; $i++) {
17 312         197 my $token_type = $token->{type};
18 312         185 my $token_data = $token->{data};
19              
20 312 100 100     623 if ($token_type == BUILTIN_FUNC && $token_data eq 'split') {
21 55         44 $token = $tokens->[++$i];
22              
23 55 100       61 if ($token->{type} == LEFT_PAREN) {
24 28         23 $token = $tokens->[++$i];
25             }
26              
27 55         35 $token_type = $token->{type};
28 55         34 $token_data = $token->{data};
29              
30 55 100 100     250 if (
    100 100        
      100        
31             ($token_type == STRING || $token_type == RAW_STRING) &&
32             $token_data ne ' '
33             ) {
34             push @violations, {
35             filename => $file,
36             line => $token->{line},
37 17         55 description => DESC,
38             explanation => EXPL,
39             policy => __PACKAGE__,
40             };
41             }
42             elsif ($token_type == REG_QUOTE || $token_type == REG_DOUBLE_QUOTE) {
43 18         9 $i += 2;
44 18 100       33 if ($tokens->[$i]->{data} ne ' ') {
45             push @violations, {
46             filename => $file,
47             line => $token->{line},
48 12         38 description => DESC,
49             explanation => EXPL,
50             policy => __PACKAGE__,
51             };
52             }
53             }
54             }
55             }
56              
57 7         23 return \@violations;
58             }
59              
60             1;
61