public function Twig_Node_Expression_Unary::compile in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/twig/twig/lib/Twig/Node/Expression/Unary.php \Twig_Node_Expression_Unary::compile()
Compiles the node to PHP.
Parameters
Twig_Compiler $compiler A Twig_Compiler instance:
Overrides Twig_Node::compile
File
- vendor/
twig/ twig/ lib/ Twig/ Node/ Expression/ Unary.php, line 19
Class
Code
public function compile(Twig_Compiler $compiler) {
$compiler
->raw(' ');
$this
->operator($compiler);
$compiler
->subcompile($this
->getNode('node'));
}