Exemple #1
0
 public function subcompile(Twig_NodeInterface $node, $raw = true)
 {
     if (false === $raw) {
         $this->addIndentation();
     }
     $node->compile($this);
     return $this;
 }
Exemple #2
0
 public function subcompile(Twig_NodeInterface $node, $raw = true)
 {
     if (false === $raw) {
         $this->source .= str_repeat(' ', $this->indentation * 4);
     }
     $node->compile($this);
     return $this;
 }