summaryrefslogtreecommitdiffstats
path: root/lib/Text/Handlebars/Symbol.pm
blob: cc81f7a38feeae852497c8ee848a8e89bf5eb024 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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;

1;