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   6 use Moops;
  1         2  
  1         6  
2              
3             # PODNAME: MarpaX::Languages::M4::Impl::Macros
4              
5             # ABSTRACT: M4 Macro list generic implementation
6              
7 1     1   2683 class MarpaX::Languages::M4::Impl::Macros {
  1     1   26  
  1         5  
  1         2  
  1         55  
  1         5  
  1         2  
  1         8  
  1         313  
  1         2  
  1         6  
  1         58  
  1         2  
  1         42  
  1         5  
  1         2  
  1         79  
  1         28  
  1         5  
  1         2  
  1         5  
  1         4419  
  1         2  
  1         6  
  1         336  
  1         2  
  1         5  
  1         120  
  1         2  
  1         7  
  1         62  
  1         2  
  1         6  
  1         173  
  1         2  
  1         7  
  1         730  
  1         2  
  1         6  
  1         1838  
  1         3  
  1         5  
  1         1  
  1         20  
  1         4  
  1         4  
  1         35  
  1         4  
  1         2  
  1         70  
  1         3759  
8 1     1   277 use MarpaX::Languages::M4::Role::Macros;
  1         2  
  1         6  
9 1     1   40 use MarpaX::Languages::M4::Type::Macro -all;
  1         2  
  1         8  
10 1     1   689 use MooX::HandlesVia;
  1         3  
  1         7  
11              
12 1         9 our $VERSION = '0.018'; # VERSION
13              
14 1         2 our $AUTHORITY = 'cpan:JDDPAUSE'; # AUTHORITY
15              
16             has _macrosList => (
17             is => 'rwp',
18             isa => ArrayRef [M4Macro],
19 6697         165251 default => sub { [] },
20 1         4 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         6349 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.018
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