File Coverage

blib/lib/PPIx/Regexp/Token/GroupType/Atomic_Script_Run.pm
Criterion Covered Total %
statement 20 20 100.0
branch n/a
condition n/a
subroutine 7 7 100.0
pod n/a
total 27 27 100.0


line stmt bran cond sub pod time code
1             package PPIx::Regexp::Token::GroupType::Atomic_Script_Run;
2              
3 9     9   277 use 5.006;
  9         34  
4              
5 9     9   49 use strict;
  9         19  
  9         172  
6 9     9   43 use warnings;
  9         52  
  9         238  
7              
8 9     9   47 use base qw{ PPIx::Regexp::Token::GroupType };
  9         18  
  9         722  
9              
10 9     9   60 use PPIx::Regexp::Constant qw{ @CARP_NOT };
  9         23  
  9         846  
11              
12             our $VERSION = '0.087_01';
13              
14 9     9   59 use constant EXPL => 'All characters must be in same script, atomic version';
  9         19  
  9         659  
15              
16 9         597 use constant DEF => {
17             '*atomic_script_run:' => {
18             expl => EXPL,
19             intro => '5.027009',
20             },
21             '*asr:' => {
22             expl => EXPL,
23             intro => '5.027009',
24             },
25 9     9   61 };
  9         28  
26              
27             __PACKAGE__->__setup_class();
28              
29             1;
30              
31             __END__