File Coverage

blib/lib/PPIx/Regexp/Token/NoOp.pm
Criterion Covered Total %
statement 23 24 95.8
branch 3 4 75.0
condition n/a
subroutine 9 10 90.0
pod 3 3 100.0
total 38 41 92.6


line stmt bran cond sub pod time code
1             package PPIx::Regexp::Token::NoOp;
2              
3 9     9   184 use 5.006;
  9         33  
4              
5 9     9   58 use strict;
  9         33  
  9         188  
6 9     9   42 use warnings;
  9         26  
  9         280  
7              
8 9     9   52 use base qw{ PPIx::Regexp::Token };
  9         35  
  9         735  
9              
10 9     9   70 use Carp;
  9         42  
  9         565  
11 9     9   61 use PPIx::Regexp::Constant qw{ MINIMUM_PERL @CARP_NOT };
  9         21  
  9         2352  
12              
13             our $VERSION = '0.088';
14              
15             {
16             my %when_removed = (
17             '\\N{}' => '5.027001',
18             );
19              
20             sub __new {
21 151     151   494 my ( $class, $content, %arg ) = @_;
22              
23             defined $arg{perl_version_introduced}
24 151 100       416 or $arg{perl_version_introduced} = MINIMUM_PERL;
25              
26             exists $arg{perl_version_removed}
27 151 50       517 or $arg{perl_version_removed} = $when_removed{$content};
28              
29 151         680 return $class->SUPER::__new( $content, %arg );
30             }
31             }
32              
33             # Return true if the token can be quantified, and false otherwise
34 0     0 1 0 sub can_be_quantified { return };
35              
36             sub explain {
37 1     1 1 4 return 'Not significant';
38             }
39              
40             sub significant {
41 350     350 1 872 return;
42             }
43              
44             1;
45              
46             __END__