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   309 use 5.006;
  9         38  
4              
5 9     9   53 use strict;
  9         18  
  9         179  
6 9     9   39 use warnings;
  9         21  
  9         237  
7              
8 9     9   56 use base qw{ PPIx::Regexp::Token::GroupType };
  9         24  
  9         748  
9              
10 9     9   60 use PPIx::Regexp::Constant qw{ @CARP_NOT };
  9         20  
  9         867  
11              
12             our $VERSION = '0.087';
13              
14 9     9   66 use constant EXPL => 'All characters must be in same script, atomic version';
  9         18  
  9         599  
15              
16 9         588 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   54 };
  9         25  
26              
27             __PACKAGE__->__setup_class();
28              
29             1;
30              
31             __END__