File Coverage

blib/lib/MarpaX/Languages/M4/Role/Regexp.pm
Criterion Covered Total %
statement 65 65 100.0
branch n/a
condition n/a
subroutine 15 15 100.0
pod n/a
total 80 80 100.0


line stmt bran cond sub pod time code
1 1     1   6 use Moops;
  1         2  
  1         5  
2              
3             # PODNAME: MarpaX::Languages::M4::Role::Regexp
4              
5             # ABSTRACT: M4 Regexp role
6              
7 1     1   2817 role MarpaX::Languages::M4::Role::Regexp {
  1     1   26  
  1     1   6  
  1     1   2  
  1     1   57  
  1     1   5  
  1     1   2  
  1     1   9  
  1     1   256  
  1     1   3  
  1     1   6  
  1     1   57  
  1     1   3  
  1     1   43  
  1         5  
  1         1  
  1         82  
  1         29  
  1         7  
  1         2  
  1         5  
  1         4276  
  1         2  
  1         8  
  1         388  
  1         2  
  1         7  
  1         135  
  1         2  
  1         7  
  1         74  
  1         5  
  1         7  
  1         204  
  1         2  
  1         5  
  1         815  
  1         2  
  1         5  
  1         1930  
  1         3  
  1         4  
  1         2  
  1         26  
  1         4  
  1         2  
  1         42  
  1         5  
  1         1  
  1         156  
  1         2918  
8              
9 1         12 our $VERSION = '0.020'; # VERSION
10              
11 1         2 our $AUTHORITY = 'cpan:JDDPAUSE'; # AUTHORITY
12              
13 1         5 requires 'regexp_compile';
14 1         17 requires 'regexp_lpos';
15 1         8 requires 'regexp_lpos_count';
16 1         8 requires 'regexp_lpos_get';
17 1         9 requires 'regexp_rpos';
18 1         8 requires 'regexp_rpos_count';
19 1         8 requires 'regexp_rpos_get';
20 1         8 requires 'regexp_exec';
21 1         7 requires 'regexp_substitute';
22             }
23              
24             1;
25              
26             __END__
27              
28             =pod
29              
30             =encoding UTF-8
31              
32             =head1 NAME
33              
34             MarpaX::Languages::M4::Role::Regexp - M4 Regexp role
35              
36             =head1 VERSION
37              
38             version 0.020
39              
40             =head1 AUTHOR
41              
42             Jean-Damien Durand <jeandamiendurand@free.fr>
43              
44             =head1 COPYRIGHT AND LICENSE
45              
46             This software is copyright (c) 2015 by Jean-Damien Durand.
47              
48             This is free software; you can redistribute it and/or modify it under
49             the same terms as the Perl 5 programming language system itself.
50              
51             =cut