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   60 use strict;
  9         19  
  9         250  
4 9     9   49 use warnings;
  9         25  
  9         230  
5              
6 9     9   43 use base qw{ PPIx::Regexp::Structure };
  9         37  
  9         799  
7              
8 9         804 use PPIx::Regexp::Constant qw{
9             LITERAL_LEFT_CURLY_REMOVED_PHASE_2
10             @CARP_NOT
11 9     9   64 };
  9         18  
12              
13 9     9   62 use PPIx::Regexp::Util qw{ :width_one };
  9         20  
  9         1215  
14              
15             our $VERSION = '0.088';
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__