public function Twig_Node_Print::compile in Translation template extractor 6.3
Same name and namespace in other branches
- 7.3 vendor/Twig/Node/Print.php \Twig_Node_Print::compile()
Compiles the node to PHP.
Parameters
Twig_Compiler $compiler A Twig_Compiler instance:
Overrides Twig_Node::compile
1 method overrides Twig_Node_Print::compile()
- Twig_Node_SandboxedPrint::compile in vendor/
Twig/ Node/ SandboxedPrint.php - Compiles the node to PHP.
File
- vendor/
Twig/ Node/ Print.php, line 30
Class
- Twig_Node_Print
- Represents a node that outputs an expression.
Code
public function compile(Twig_Compiler $compiler) {
$compiler
->addDebugInfo($this)
->write('echo ')
->subcompile($this
->getNode('expr'))
->raw(";\n");
}