File Coverage

blib/lib/Language/Expr/CompilerRole.pm
Criterion Covered Total %
statement 14 14 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 19 19 100.0


line stmt bran cond sub pod time code
1             package Language::Expr::CompilerRole;
2              
3             our $DATE = '2016-06-29'; # DATE
4             our $VERSION = '0.27'; # VERSION
5              
6 2     2   856 use 5.010;
  2         4  
7 2     2   5 use strict;
  2         2  
  2         54  
8 2     2   7 use warnings;
  2         2  
  2         39  
9              
10 2     2   10 use Role::Tiny;
  2         2  
  2         15  
11 2     2   236 use Role::Tiny::With;
  2         2  
  2         99  
12              
13             with 'Language::Expr::EvaluatorRole';
14             requires 'compile';
15              
16             1;
17             # ABSTRACT: Role for Language::Expr::Compiler::*
18              
19             __END__
20              
21             =pod
22              
23             =encoding UTF-8
24              
25             =head1 NAME
26              
27             Language::Expr::CompilerRole - Role for Language::Expr::Compiler::*
28              
29             =head1 VERSION
30              
31             This document describes version 0.27 of Language::Expr::CompilerRole (from Perl distribution Language-Expr), released on 2016-06-29.
32              
33             =head1 HOMEPAGE
34              
35             Please visit the project's homepage at L<https://metacpan.org/release/Language-Expr>.
36              
37             =head1 SOURCE
38              
39             Source repository is at L<https://github.com/perlancar/perl-Language-Expr>.
40              
41             =head1 BUGS
42              
43             Please report any bugs or feature requests on the bugtracker website L<https://rt.cpan.org/Public/Dist/Display.html?Name=Language-Expr>
44              
45             When submitting a bug or request, please include a test-file or a
46             patch to an existing test-file that illustrates the bug or desired
47             feature.
48              
49             =head1 AUTHOR
50              
51             perlancar <perlancar@cpan.org>
52              
53             =head1 COPYRIGHT AND LICENSE
54              
55             This software is copyright (c) 2016 by perlancar@cpan.org.
56              
57             This is free software; you can redistribute it and/or modify it under
58             the same terms as the Perl 5 programming language system itself.
59              
60             =cut