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   5 use Moops;
  1         2  
  1         5  
2              
3             # PODNAME: MarpaX::Languages::M4::Role::Macro
4              
5             # ABSTRACT: M4 Macro role
6              
7 1     1   2507 role MarpaX::Languages::M4::Role::Macro {
  1     1   24  
  1     1   5  
  1     1   2  
  1     1   40  
  1     1   5  
  1     1   2  
  1     1   5  
  1     1   223  
  1     1   2  
  1     1   4  
  1     1   56  
  1     1   2  
  1     1   48  
  1         5  
  1         2  
  1         72  
  1         26  
  1         5  
  1         2  
  1         6  
  1         4194  
  1         2  
  1         7  
  1         360  
  1         2  
  1         5  
  1         119  
  1         2  
  1         5  
  1         73  
  1         2  
  1         4  
  1         170  
  1         2  
  1         4  
  1         726  
  1         2  
  1         5  
  1         1790  
  1         4  
  1         4  
  1         2  
  1         20  
  1         4  
  1         1  
  1         36  
  1         4  
  1         2  
  1         120  
  1         2731  
8              
9 1         10 our $VERSION = '0.018'; # VERSION
10              
11 1         3 our $AUTHORITY = 'cpan:JDDPAUSE'; # AUTHORITY
12              
13 1         3 requires 'macro_name';
14 1         14 requires 'macro_execute';
15 1         7 requires 'macro_expansion';
16 1         8 requires 'macro_needParams';
17 1         8 requires 'macro_paramCanBeMacro';
18 1         7 requires 'macro_postMatchLengthExecute';
19 1         8 requires 'macro_isBuiltin';
20 1         7 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.018
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