File Coverage

blib/lib/MarpaX/Languages/M4/Role/Macros.pm
Criterion Covered Total %
statement 62 62 100.0
branch n/a
condition n/a
subroutine 15 15 100.0
pod n/a
total 77 77 100.0


line stmt bran cond sub pod time code
1 1     1   5 use Moops;
  1         3  
  1         6  
2              
3             # PODNAME: MarpaX::Languages::M4::Role::Macros
4              
5             # ABSTRACT: M4 Macros role
6              
7 1     1   3046 role MarpaX::Languages::M4::Role::Macros {
  1     1   28  
  1     1   5  
  1     1   2  
  1     1   81  
  1     1   10  
  1     1   4  
  1     1   9  
  1     1   275  
  1     1   3  
  1     1   6  
  1     1   61  
  1     1   2  
  1     1   43  
  1         5  
  1         2  
  1         78  
  1         37  
  1         6  
  1         2  
  1         6  
  1         4583  
  1         3  
  1         8  
  1         429  
  1         3  
  1         7  
  1         151  
  1         2  
  1         8  
  1         78  
  1         2  
  1         7  
  1         191  
  1         2  
  1         9  
  1         887  
  1         2  
  1         6  
  1         1873  
  1         4  
  1         5  
  1         2  
  1         23  
  1         4  
  1         2  
  1         38  
  1         5  
  1         2  
  1         142  
  1         3030  
8              
9 1         11 our $VERSION = '0.019'; # VERSION
10              
11 1         3 our $AUTHORITY = 'cpan:JDDPAUSE'; # AUTHORITY
12              
13 1         4 requires 'macros_isEmpty';
14 1         17 requires 'macros_push';
15 1         8 requires 'macros_pop';
16 1         9 requires 'macros_set';
17 1         7 requires 'macros_get';
18 1         8 requires 'macros_elements';
19             }
20              
21             1;
22              
23             __END__
24              
25             =pod
26              
27             =encoding UTF-8
28              
29             =head1 NAME
30              
31             MarpaX::Languages::M4::Role::Macros - M4 Macros role
32              
33             =head1 VERSION
34              
35             version 0.019
36              
37             =head1 AUTHOR
38              
39             Jean-Damien Durand <jeandamiendurand@free.fr>
40              
41             =head1 COPYRIGHT AND LICENSE
42              
43             This software is copyright (c) 2015 by Jean-Damien Durand.
44              
45             This is free software; you can redistribute it and/or modify it under
46             the same terms as the Perl 5 programming language system itself.
47              
48             =cut