File Coverage

blib/lib/MarpaX/Languages/M4/Impl/Macros.pm
Criterion Covered Total %
statement 68 68 100.0
branch n/a
condition n/a
subroutine 6 6 100.0
pod n/a
total 74 74 100.0


line stmt bran cond sub pod time code
1 1     1   7 use Moops;
  1         2  
  1         8  
2              
3             # PODNAME: MarpaX::Languages::M4::Impl::Macros
4              
5             # ABSTRACT: M4 Macro list generic implementation
6              
7 1     1   3211 class MarpaX::Languages::M4::Impl::Macros {
  1     1   29  
  1         6  
  1         3  
  1         68  
  1         6  
  1         2  
  1         10  
  1         327  
  1         3  
  1         6  
  1         62  
  1         3  
  1         47  
  1         6  
  1         2  
  1         82  
  1         39  
  1         6  
  1         2  
  1         6  
  1         4762  
  1         4  
  1         8  
  1         395  
  1         2  
  1         9  
  1         138  
  1         2  
  1         10  
  1         75  
  1         2  
  1         6  
  1         189  
  1         2  
  1         9  
  1         840  
  1         3  
  1         7  
  1         2073  
  1         3  
  1         4  
  1         2  
  1         30  
  1         5  
  1         1  
  1         48  
  1         4  
  1         2  
  1         99  
  1         4000  
8 1     1   399 use MarpaX::Languages::M4::Role::Macros;
  1         3  
  1         9  
9 1     1   73 use MarpaX::Languages::M4::Type::Macro -all;
  1         3  
  1         13  
10 1     1   762 use MooX::HandlesVia;
  1         2  
  1         8  
11              
12 1         9 our $VERSION = '0.019'; # VERSION
13              
14 1         4 our $AUTHORITY = 'cpan:JDDPAUSE'; # AUTHORITY
15              
16             has _macrosList => (
17             is => 'rwp',
18             isa => ArrayRef [M4Macro],
19 6697         182252 default => sub { [] },
20 1         5 handles_via => 'Array',
21             handles => {
22             macros_isEmpty => 'is_empty',
23             macros_push => 'push',
24             macros_pop => 'pop',
25             macros_set => 'set',
26             macros_get => 'get',
27             macros_elements => 'elements'
28             }
29             );
30              
31 1         7406 with 'MarpaX::Languages::M4::Role::Macros';
32             }
33              
34             1;
35              
36             __END__
37              
38             =pod
39              
40             =encoding UTF-8
41              
42             =head1 NAME
43              
44             MarpaX::Languages::M4::Impl::Macros - M4 Macro list generic implementation
45              
46             =head1 VERSION
47              
48             version 0.019
49              
50             =head1 AUTHOR
51              
52             Jean-Damien Durand <jeandamiendurand@free.fr>
53              
54             =head1 COPYRIGHT AND LICENSE
55              
56             This software is copyright (c) 2015 by Jean-Damien Durand.
57              
58             This is free software; you can redistribute it and/or modify it under
59             the same terms as the Perl 5 programming language system itself.
60              
61             =cut