summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/Text/Handlebars/Symbol.pm22
1 files changed, 22 insertions, 0 deletions
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;