line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Text::Handlebars::Symbol; |
2
|
|
|
|
|
|
|
BEGIN { |
3
|
12
|
|
|
12
|
|
431
|
$Text::Handlebars::Symbol::AUTHORITY = 'cpan:DOY'; |
4
|
|
|
|
|
|
|
} |
5
|
|
|
|
|
|
|
$Text::Handlebars::Symbol::VERSION = '0.04'; |
6
|
12
|
|
|
12
|
|
73
|
use Mouse; |
|
12
|
|
|
|
|
27
|
|
|
12
|
|
|
|
|
456
|
|
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
extends 'Text::Xslate::Symbol'; |
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
has is_helper => ( |
11
|
|
|
|
|
|
|
is => 'rw', |
12
|
|
|
|
|
|
|
isa => 'Bool', |
13
|
|
|
|
|
|
|
); |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
has is_block_helper => ( |
16
|
|
|
|
|
|
|
is => 'rw', |
17
|
|
|
|
|
|
|
isa => 'Bool', |
18
|
|
|
|
|
|
|
); |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
__PACKAGE__->meta->make_immutable; |
21
|
12
|
|
|
12
|
|
5293
|
no Mouse; |
|
12
|
|
|
|
|
29
|
|
|
12
|
|
|
|
|
64
|
|
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
=for Pod::Coverage |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
=cut |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
1; |