예제 #1
0
파일: Array.php 프로젝트: naldz/cyberden
 public function addElement(Twig_Node_Expression $value, Twig_Node_Expression $key = null)
 {
     if (null === $key) {
         $key = new Twig_Node_Expression_Constant(++$this->index, $value->getTemplateLine());
     }
     array_push($this->nodes, $key, $value);
 }