aboutsummaryrefslogtreecommitdiffstats
path: root/public/system/library/template/Twig/Node/Expression/Binary/Range.php
diff options
context:
space:
mode:
Diffstat (limited to 'public/system/library/template/Twig/Node/Expression/Binary/Range.php')
-rw-r--r--public/system/library/template/Twig/Node/Expression/Binary/Range.php28
1 files changed, 28 insertions, 0 deletions
diff --git a/public/system/library/template/Twig/Node/Expression/Binary/Range.php b/public/system/library/template/Twig/Node/Expression/Binary/Range.php
new file mode 100644
index 0000000..692ec9c
--- /dev/null
+++ b/public/system/library/template/Twig/Node/Expression/Binary/Range.php
@@ -0,0 +1,28 @@
+<?php
+
+/*
+ * This file is part of Twig.
+ *
+ * (c) 2010 Fabien Potencier
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
+class Twig_Node_Expression_Binary_Range extends Twig_Node_Expression_Binary
+{
+ public function compile(Twig_Compiler $compiler)
+ {
+ $compiler
+ ->raw('range(')
+ ->subcompile($this->getNode('left'))
+ ->raw(', ')
+ ->subcompile($this->getNode('right'))
+ ->raw(')')
+ ;
+ }
+
+ public function operator(Twig_Compiler $compiler)
+ {
+ return $compiler->raw('..');
+ }
+}