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         2  
  1         5  
2              
3             # PODNAME: MarpaX::Languages::M4::Role::Macros
4              
5             # ABSTRACT: M4 Macros role
6              
7 1     1   2517 role MarpaX::Languages::M4::Role::Macros {
  1     1   24  
  1     1   6  
  1     1   2  
  1     1   41  
  1     1   5  
  1     1   2  
  1     1   6  
  1     1   225  
  1     1   2  
  1     1   5  
  1     1   54  
  1     1   1  
  1     1   39  
  1         5  
  1         1  
  1         73  
  1         27  
  1         5  
  1         2  
  1         5  
  1         4196  
  1         2  
  1         7  
  1         396  
  1         2  
  1         5  
  1         127  
  1         2  
  1         6  
  1         83  
  1         2  
  1         4  
  1         178  
  1         3  
  1         4  
  1         746  
  1         2  
  1         5  
  1         1796  
  1         3  
  1         4  
  1         2  
  1         22  
  1         5  
  1         1  
  1         35  
  1         5  
  1         2  
  1         110  
  1         2793  
8              
9 1         9 our $VERSION = '0.018'; # VERSION
10              
11 1         2 our $AUTHORITY = 'cpan:JDDPAUSE'; # AUTHORITY
12              
13 1         4 requires 'macros_isEmpty';
14 1         15 requires 'macros_push';
15 1         8 requires 'macros_pop';
16 1         8 requires 'macros_set';
17 1         7 requires 'macros_get';
18 1         7 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.018
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