The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package Text::Handlebars::Symbol;
BEGIN {
  $Text::Handlebars::Symbol::AUTHORITY = 'cpan:DOY';
}
{
  $Text::Handlebars::Symbol::VERSION = '0.02';
}
use Any::Moose;

extends 'Text::Xslate::Symbol';

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

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

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

1;