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

extends 'Text::Xslate::Symbol';

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

has fourth => (
    is => 'rw',
);

has context => (
    is => 'rw',
);

__PACKAGE__->meta->make_immutable;
no Any::Moose;

1;