File Coverage

blib/lib/Language/Expr/InterpreterRole.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::InterpreterRole;
2              
3             our $DATE = '2016-07-03'; # DATE
4             our $VERSION = '0.29'; # VERSION
5              
6 4     4   2189 use 5.010;
  4         11  
7 4     4   15 use strict;
  4         5  
  4         77  
8 4     4   14 use warnings;
  4         6  
  4         143  
9              
10 4     4   14 use Role::Tiny;
  4         5  
  4         25  
11 4     4   503 use Role::Tiny::With;
  4         7  
  4         266  
12              
13             with 'Language::Expr::EvaluatorRole';
14             requires 'eval';
15              
16             1;
17             # ABSTRACT: Role for Language::Expr::Interpreter::*
18              
19             __END__
20              
21             =pod
22              
23             =encoding UTF-8
24              
25             =head1 NAME
26              
27             Language::Expr::InterpreterRole - Role for Language::Expr::Interpreter::*
28              
29             =head1 VERSION
30              
31             This document describes version 0.29 of Language::Expr::InterpreterRole (from Perl distribution Language-Expr), released on 2016-07-03.
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/sharyanto/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