Exemplo n.º 1
0
 function make_return($res = NULL)
 {
     if ($res) {
         return parent::make_return($res);
     } else {
         $this->returns = !$this->jumps(array('loop' => TRUE));
     }
     return $this;
 }
Exemplo n.º 2
0
 function make_return()
 {
     if (count($this->properties)) {
         return parent::make_return();
     } else {
         return $this->base->make_return();
     }
 }
Exemplo n.º 3
0
 function make_return($res = NULL)
 {
     return $this->is_statement() ? $this : parent::make_return($res);
 }
Exemplo n.º 4
0
 function make_return()
 {
     return $this->is_statement() ? $this : parent::make_return();
 }