Compiles the node to PHP.
Twig_Compiler A Twig_Compiler instance:
Overrides Twig_Node::compile
public function compile(Twig_Compiler $compiler) {
$compiler
->addDebugInfo($this);
if ($this
->getAttribute('ignore_missing')) {
$compiler
->write("try {\n")
->indent();
}
$this
->addGetTemplate($compiler);
$compiler
->raw('->display(');
$this
->addTemplateArguments($compiler);
$compiler
->raw(");\n");
if ($this
->getAttribute('ignore_missing')) {
$compiler
->outdent()
->write("} catch (Twig_Error_Loader \$e) {\n")
->indent()
->write("// ignore missing template\n")
->outdent()
->write("}\n\n");
}
}