You are here

public function Twig_Node_Expression_Parent::compile in Translation template extractor 6.3

Same name and namespace in other branches
  1. 7.3 vendor/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/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)");
  }
}