public function Twig_Node_AutoEscape::compile in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/twig/twig/lib/Twig/Node/AutoEscape.php \Twig_Node_AutoEscape::compile()
Compiles the node to PHP.
Parameters
Twig_Compiler $compiler A Twig_Compiler instance:
Overrides Twig_Node::compile
File
- vendor/
twig/ twig/ lib/ Twig/ Node/ AutoEscape.php, line 30
Class
- Twig_Node_AutoEscape
- Represents an autoescape node.
Code
public function compile(Twig_Compiler $compiler) {
$compiler
->subcompile($this
->getNode('body'));
}