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         1  
  1         9  
2              
3             # PODNAME: MarpaX::Languages::M4::Role::Macro
4              
5             # ABSTRACT: M4 Macro role
6              
7 1     1   3329 role MarpaX::Languages::M4::Role::Macro {
  1     1   31  
  1     1   6  
  1     1   2  
  1     1   70  
  1     1   5  
  1     1   2  
  1     1   10  
  1     1   352  
  1     1   3  
  1     1   8  
  1     1   62  
  1     1   2  
  1     1   48  
  1         5  
  1         2  
  1         101  
  1         32  
  1         6  
  1         2  
  1         5  
  1         4812  
  1         3  
  1         12  
  1         493  
  1         3  
  1         9  
  1         160  
  1         3  
  1         11  
  1         117  
  1         4  
  1         11  
  1         247  
  1         2  
  1         10  
  1         1048  
  1         2  
  1         8  
  1         2187  
  1         3  
  1         4  
  1         2  
  1         31  
  1         5  
  1         2  
  1         59  
  1         5  
  1         1  
  1         176  
  1         3151  
8              
9 1         13 our $VERSION = '0.019'; # VERSION
10              
11 1         3 our $AUTHORITY = 'cpan:JDDPAUSE'; # AUTHORITY
12              
13 1         6 requires 'macro_name';
14 1         20 requires 'macro_execute';
15 1         9 requires 'macro_expansion';
16 1         7 requires 'macro_needParams';
17 1         9 requires 'macro_paramCanBeMacro';
18 1         8 requires 'macro_postMatchLengthExecute';
19 1         8 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.019
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