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   142 use 5.006;
  9         26  
4              
5 9     9   39 use strict;
  9         32  
  9         1740  
6 9     9   32 use warnings;
  9         13  
  9         418  
7              
8 9     9   41 use base qw{ PPIx::Regexp::Token::GroupType };
  9         11  
  9         755  
9              
10 9     9   47 use PPIx::Regexp::Constant qw{ @CARP_NOT };
  9         12  
  9         869  
11              
12             our $VERSION = '0.092';
13              
14 9     9   41 use constant EXPL => 'All characters must be in same script, atomic version';
  9         19  
  9         732  
15              
16 9         557 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   38 };
  9         14  
26              
27             __PACKAGE__->__setup_class();
28              
29             1;
30              
31             __END__