public function Twig_Node_Expression_Parent::compile in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/twig/twig/lib/Twig/Node/Expression/Parent.php \Twig_Node_Expression_Parent::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/ Expression/ Parent.php, line 25
Class
- Twig_Node_Expression_Parent
- Represents a parent node.
Code
public function compile(Twig_Compiler $compiler) {
if ($this
->getAttribute('output')) {
$compiler
->addDebugInfo($this)
->write('$this->displayParentBlock(')
->string($this
->getAttribute('name'))
->raw(", \$context, \$blocks);\n");
}
else {
$compiler
->raw('$this->renderParentBlock(')
->string($this
->getAttribute('name'))
->raw(', $context, $blocks)');
}
}