1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <?php
-
-
-
-
- class Twig_Node_Text extends Twig_Node implements Twig_NodeOutputInterface
- {
- public function __construct($data, $lineno)
- {
- parent::__construct(array(), array('data' => $data), $lineno);
- }
-
-
-
- public function compile(Twig_Compiler $compiler)
- {
- $compiler
- ->addDebugInfo($this)
- ->write('echo ')
- ->string($this->getAttribute('data'))
- ->raw(";\n")
- ;
- }
- }
|