123456789101112131415161718192021222324 |
- <?php
-
-
- class Twig_Node_Expression_Constant extends Twig_Node_Expression
- {
- public function __construct($value, $lineno)
- {
- parent::__construct(array(), array('value' => $value), $lineno);
- }
-
- public function compile(Twig_Compiler $compiler)
- {
- $compiler->repr($this->getAttribute('value'));
- }
- }
|