line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Language::Expr::InterpreterRole; |
2
|
|
|
|
|
|
|
|
3
|
|
|
|
|
|
|
our $DATE = '2016-06-29'; # DATE |
4
|
|
|
|
|
|
|
our $VERSION = '0.27'; # VERSION |
5
|
|
|
|
|
|
|
|
6
|
4
|
|
|
4
|
|
1939
|
use 5.010; |
|
4
|
|
|
|
|
10
|
|
7
|
4
|
|
|
4
|
|
16
|
use strict; |
|
4
|
|
|
|
|
3
|
|
|
4
|
|
|
|
|
69
|
|
8
|
4
|
|
|
4
|
|
10
|
use warnings; |
|
4
|
|
|
|
|
5
|
|
|
4
|
|
|
|
|
86
|
|
9
|
|
|
|
|
|
|
|
10
|
4
|
|
|
4
|
|
11
|
use Role::Tiny; |
|
4
|
|
|
|
|
5
|
|
|
4
|
|
|
|
|
19
|
|
11
|
4
|
|
|
4
|
|
422
|
use Role::Tiny::With; |
|
4
|
|
|
|
|
6
|
|
|
4
|
|
|
|
|
227
|
|
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.27 of Language::Expr::InterpreterRole (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 |