Compiles the node to PHP.
Twig_Compiler A Twig_Compiler instance:
Overrides Twig_Node::compile
public function compile(Twig_Compiler $compiler) {
if ($this
->getAttribute('as_string')) {
$compiler
->raw('(string) ');
}
if ($this
->getAttribute('output')) {
$compiler
->addDebugInfo($this)
->write("\$this->displayBlock(")
->subcompile($this
->getNode('name'))
->raw(", \$context, \$blocks);\n");
}
else {
$compiler
->raw("\$this->renderBlock(")
->subcompile($this
->getNode('name'))
->raw(", \$context, \$blocks)");
}
}