File Coverage

blib/lib/PPIx/Regexp/Structure/RegexSet.pm
Criterion Covered Total %
statement 16 16 100.0
branch n/a
condition n/a
subroutine 6 6 100.0
pod n/a
total 22 22 100.0


line stmt bran cond sub pod time code
1             package PPIx::Regexp::Structure::RegexSet;
2              
3 9     9   61 use strict;
  9         17  
  9         280  
4 9     9   46 use warnings;
  9         19  
  9         245  
5              
6 9     9   43 use base qw{ PPIx::Regexp::Structure };
  9         17  
  9         750  
7              
8 9         848 use PPIx::Regexp::Constant qw{
9             LITERAL_LEFT_CURLY_REMOVED_PHASE_2
10             @CARP_NOT
11 9     9   67 };
  9         19  
12              
13 9     9   73 use PPIx::Regexp::Util qw{ :width_one };
  9         19  
  9         1262  
14              
15             our $VERSION = '0.087_01';
16              
17             sub __following_literal_left_curly_disallowed_in {
18 1     1   7 return LITERAL_LEFT_CURLY_REMOVED_PHASE_2;
19             }
20              
21             1;
22              
23             __END__