You are here

public function Twig_Node_AutoEscape::compile in Translation template extractor 6.3

Same name and namespace in other branches
  1. 7.3 vendor/Twig/Node/AutoEscape.php \Twig_Node_AutoEscape::compile()

Compiles the node to PHP.

Parameters

Twig_Compiler $compiler A Twig_Compiler instance:

Overrides Twig_Node::compile

File

vendor/Twig/Node/AutoEscape.php, line 35

Class

Twig_Node_AutoEscape
Represents an autoescape node.

Code

public function compile(Twig_Compiler $compiler) {
  $compiler
    ->subcompile($this
    ->getNode('body'));
}