File Coverage

blib/lib/MarpaX/Languages/M4/Role/Macro.pm
Criterion Covered Total %
statement 64 64 100.0
branch n/a
condition n/a
subroutine 15 15 100.0
pod n/a
total 79 79 100.0


line stmt bran cond sub pod time code
1 1     1   7 use Moops;
  1         2  
  1         7  
2              
3             # PODNAME: MarpaX::Languages::M4::Role::Macro
4              
5             # ABSTRACT: M4 Macro role
6              
7 1     1   2908 role MarpaX::Languages::M4::Role::Macro {
  1     1   28  
  1     1   6  
  1     1   3  
  1     1   62  
  1     1   5  
  1     1   3  
  1     1   8  
  1     1   280  
  1     1   2  
  1     1   6  
  1     1   65  
  1     1   2  
  1     1   44  
  1         5  
  1         1  
  1         82  
  1         34  
  1         5  
  1         3  
  1         7  
  1         4463  
  1         2  
  1         13  
  1         505  
  1         2  
  1         8  
  1         151  
  1         2  
  1         9  
  1         90  
  1         2  
  1         7  
  1         221  
  1         2  
  1         7  
  1         894  
  1         2  
  1         6  
  1         1925  
  1         3  
  1         4  
  1         3  
  1         25  
  1         4  
  1         3  
  1         43  
  1         5  
  1         2  
  1         149  
  1         2911  
8              
9 1         11 our $VERSION = '0.020'; # VERSION
10              
11 1         3 our $AUTHORITY = 'cpan:JDDPAUSE'; # AUTHORITY
12              
13 1         4 requires 'macro_name';
14 1         18 requires 'macro_execute';
15 1         8 requires 'macro_expansion';
16 1         8 requires 'macro_needParams';
17 1         7 requires 'macro_paramCanBeMacro';
18 1         9 requires 'macro_postMatchLengthExecute';
19 1         9 requires 'macro_isBuiltin';
20 1         8 requires 'macro_clone';
21             }
22              
23             1;
24              
25             __END__
26              
27             =pod
28              
29             =encoding UTF-8
30              
31             =head1 NAME
32              
33             MarpaX::Languages::M4::Role::Macro - M4 Macro role
34              
35             =head1 VERSION
36              
37             version 0.020
38              
39             =head1 AUTHOR
40              
41             Jean-Damien Durand <jeandamiendurand@free.fr>
42              
43             =head1 COPYRIGHT AND LICENSE
44              
45             This software is copyright (c) 2015 by Jean-Damien Durand.
46              
47             This is free software; you can redistribute it and/or modify it under
48             the same terms as the Perl 5 programming language system itself.
49              
50             =cut