public function Twig_Node_Expression_Parent::compile

Compiles the node to PHP.

Parameters

Twig_Compiler A Twig_Compiler instance:

Overrides Twig_Node::compile

File

drupal/core/vendor/twig/twig/lib/Twig/Node/Expression/Parent.php, line 30

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)");
  }
}