summaryrefslogtreecommitdiffstats
path: root/lib/Text/Handlebars/Symbol.pm
blob: f4fffe4c748bedc2468e8ee7c99b335d0989cbf1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package Text::Handlebars::Symbol;
use Mouse;

extends 'Text::Xslate::Symbol';

has is_helper => (
    is  => 'rw',
    isa => 'Bool',
);

has is_block_helper => (
    is  => 'rw',
    isa => 'Bool',
);

__PACKAGE__->meta->make_immutable;
no Mouse;

=for Pod::Coverage

=cut

1;