summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2012-10-05 20:17:07 -0500
committerJesse Luehrs <doy@tozt.net>2012-10-05 20:17:07 -0500
commit618b1c4633b6686aa2f52731bff10382b3c40d5c (patch)
tree326783ebe3bf8ef7fda7ddd194a2bcb009e1fa3b
parentcb8f04e5ce31498009c3591f0ca5a69fdce6c5b8 (diff)
downloadtext-handlebars-618b1c4633b6686aa2f52731bff10382b3c40d5c.tar.gz
text-handlebars-618b1c4633b6686aa2f52731bff10382b3c40d5c.zip
whoops, forgot to add this file a while ago
-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;