1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <?php
-
-
-
-
- class Twig_Node_Print extends Twig_Node implements Twig_NodeOutputInterface
- {
- public function __construct(Twig_Node_Expression $expr, $lineno, $tag = null)
- {
- parent::__construct(array('expr' => $expr), array(), $lineno, $tag);
- }
-
-
-
- public function compile(Twig_Compiler $compiler)
- {
- $compiler
- ->addDebugInfo($this)
- ->write('echo ')
- ->subcompile($this->getNode('expr'))
- ->raw(";\n")
- ;
- }
- }
|