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   7 use Moops;
  1         2  
  1         6  
2              
3             # PODNAME: MarpaX::Languages::M4::Role::Parser
4              
5             # ABSTRACT: M4 Macro Parser role
6              
7 1     1   2858 role MarpaX::Languages::M4::Role::Parser {
  1     1   27  
  1     1   6  
  1     1   2  
  1     1   60  
  1     1   5  
  1     1   2  
  1     1   9  
  1     1   333  
  1     1   3  
  1     1   6  
  1     1   58  
  1     1   3  
  1     1   45  
  1         5  
  1         3  
  1         86  
  1         31  
  1         6  
  1         1  
  1         6  
  1         4509  
  1         3  
  1         12  
  1         712  
  1         3  
  1         8  
  1         169  
  1         3  
  1         8  
  1         86  
  1         1  
  1         8  
  1         219  
  1         3  
  1         7  
  1         884  
  1         3  
  1         6  
  1         2076  
  1         2  
  1         5  
  1         1  
  1         176  
  1         8  
  1         2  
  1         51  
  1         5  
  1         2  
  1         140  
  1         2939  
8              
9 1         12 our $VERSION = '0.020'; # VERSION
10              
11 1         2 our $AUTHORITY = 'cpan:JDDPAUSE'; # AUTHORITY
12              
13 1         5 requires 'parser_isWord';
14 1         17 requires 'parser_isComment';
15 1         9 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.020
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