public function Twig_Compiler::subcompile in Translation template extractor 7.3
Same name and namespace in other branches
- 6.3 vendor/Twig/Compiler.php \Twig_Compiler::subcompile()
File
- vendor/
Twig/ Compiler.php, line 91
Class
- Twig_Compiler
- Compiles a node to PHP code.
Code
public function subcompile(Twig_NodeInterface $node, $raw = true) {
if (false === $raw) {
$this
->addIndentation();
}
$node
->compile($this);
return $this;
}