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   241 use 5.006;
  9         36  
4              
5 9     9   49 use strict;
  9         19  
  9         174  
6 9     9   50 use warnings;
  9         18  
  9         262  
7              
8 9     9   46 use base qw{ PPIx::Regexp::Token::GroupType };
  9         22  
  9         725  
9              
10 9     9   59 use PPIx::Regexp::Constant qw{ @CARP_NOT };
  9         19  
  9         835  
11              
12             our $VERSION = '0.088';
13              
14 9     9   59 use constant EXPL => 'All characters must be in same script, atomic version';
  9         16  
  9         591  
15              
16 9         575 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   57 };
  9         19  
26              
27             __PACKAGE__->__setup_class();
28              
29             1;
30              
31             __END__