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   66 use strict;
  9         17  
  9         283  
4 9     9   42 use warnings;
  9         20  
  9         244  
5              
6 9     9   46 use base qw{ PPIx::Regexp::Structure };
  9         19  
  9         830  
7              
8 9         871 use PPIx::Regexp::Constant qw{
9             LITERAL_LEFT_CURLY_REMOVED_PHASE_2
10             @CARP_NOT
11 9     9   72 };
  9         17  
12              
13 9     9   79 use PPIx::Regexp::Util qw{ :width_one };
  9         19  
  9         1269  
14              
15             our $VERSION = '0.087';
16              
17             sub __following_literal_left_curly_disallowed_in {
18 1     1   5 return LITERAL_LEFT_CURLY_REMOVED_PHASE_2;
19             }
20              
21             1;
22              
23             __END__