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         3  
  1         8  
2              
3             # PODNAME: MarpaX::Languages::M4::Role::Regexp
4              
5             # ABSTRACT: M4 Regexp role
6              
7 1     1   3177 role MarpaX::Languages::M4::Role::Regexp {
  1     1   31  
  1     1   7  
  1     1   3  
  1     1   69  
  1     1   6  
  1     1   2  
  1     1   10  
  1     1   333  
  1     1   3  
  1     1   11  
  1     1   106  
  1     1   3  
  1     1   51  
  1         6  
  1         2  
  1         84  
  1         32  
  1         6  
  1         2  
  1         6  
  1         5023  
  1         3  
  1         10  
  1         491  
  1         2  
  1         9  
  1         178  
  1         2  
  1         10  
  1         100  
  1         3  
  1         6  
  1         240  
  1         2  
  1         10  
  1         926  
  1         3  
  1         8  
  1         2188  
  1         3  
  1         5  
  1         2  
  1         26  
  1         6  
  1         2  
  1         52  
  1         6  
  1         2  
  1         166  
  1         2968  
8              
9 1         11 our $VERSION = '0.019'; # VERSION
10              
11 1         2 our $AUTHORITY = 'cpan:JDDPAUSE'; # AUTHORITY
12              
13 1         6 requires 'regexp_compile';
14 1         18 requires 'regexp_lpos';
15 1         9 requires 'regexp_lpos_count';
16 1         8 requires 'regexp_lpos_get';
17 1         8 requires 'regexp_rpos';
18 1         8 requires 'regexp_rpos_count';
19 1         9 requires 'regexp_rpos_get';
20 1         8 requires 'regexp_exec';
21 1         8 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.019
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