예제 #1
0
 /**
  * Subcompile
  *
  * @param Apishka_Templater_NodeAbstract $node
  * @param bool                           $raw
  *
  * @return Apishka_Templater_Compiler
  */
 public function subcompile(Apishka_Templater_NodeAbstract $node, $raw = true)
 {
     if (false === $raw) {
         $this->addIndentation();
     }
     $node->compile($this);
     return $this;
 }