File Coverage

blib/lib/MarpaX/Languages/M4/Role/Parser.pm
Criterion Covered Total %
statement 63 63 100.0
branch n/a
condition n/a
subroutine 15 15 100.0
pod n/a
total 78 78 100.0


line stmt bran cond sub pod time code
1 1     1   6 use Moops;
  1         2  
  1         8  
2              
3             # PODNAME: MarpaX::Languages::M4::Role::Parser
4              
5             # ABSTRACT: M4 Macro Parser role
6              
7 1     1   3110 role MarpaX::Languages::M4::Role::Parser {
  1     1   26  
  1     1   6  
  1     1   2  
  1     1   58  
  1     1   5  
  1     1   2  
  1     1   9  
  1     1   279  
  1     1   3  
  1     1   6  
  1     1   57  
  1     1   2  
  1     1   42  
  1         5  
  1         2  
  1         97  
  1         57  
  1         10  
  1         4  
  1         9  
  1         4802  
  1         2  
  1         9  
  1         782  
  1         2  
  1         8  
  1         138  
  1         2  
  1         8  
  1         73  
  1         2  
  1         6  
  1         199  
  1         4  
  1         11  
  1         851  
  1         2  
  1         6  
  1         2113  
  1         3  
  1         9  
  1         3  
  1         199  
  1         8  
  1         2  
  1         63  
  1         9  
  1         4  
  1         135  
  1         2984  
8              
9 1         12 our $VERSION = '0.018'; # VERSION
10              
11 1         2 our $AUTHORITY = 'cpan:JDDPAUSE'; # AUTHORITY
12              
13 1         5 requires 'parser_isWord';
14 1         13 requires 'parser_isComment';
15 1         8 requires 'parser_isQuotedstring';
16 1         7 requires 'parser_isMacro';
17 1         8 requires 'parser_isCharacter';
18 1         8 requires 'parser_tokensPriority';
19 1         7 requires 'parser_parse';
20             }
21              
22             1;
23              
24             __END__
25              
26             =pod
27              
28             =encoding UTF-8
29              
30             =head1 NAME
31              
32             MarpaX::Languages::M4::Role::Parser - M4 Macro Parser role
33              
34             =head1 VERSION
35              
36             version 0.018
37              
38             =head1 AUTHOR
39              
40             Jean-Damien Durand <jeandamiendurand@free.fr>
41              
42             =head1 COPYRIGHT AND LICENSE
43              
44             This software is copyright (c) 2015 by Jean-Damien Durand.
45              
46             This is free software; you can redistribute it and/or modify it under
47             the same terms as the Perl 5 programming language system itself.
48              
49             =cut