From 618b1c4633b6686aa2f52731bff10382b3c40d5c Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Fri, 5 Oct 2012 20:17:07 -0500 Subject: whoops, forgot to add this file a while ago --- lib/Text/Handlebars/Symbol.pm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 lib/Text/Handlebars/Symbol.pm diff --git a/lib/Text/Handlebars/Symbol.pm b/lib/Text/Handlebars/Symbol.pm new file mode 100644 index 0000000..724c1b9 --- /dev/null +++ b/lib/Text/Handlebars/Symbol.pm @@ -0,0 +1,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; -- cgit v1.2.3