if(preg_match("/^([a-z]\w*)\($/",$stack->last(2),$matches)){// did we just close a function?
$fnn=$matches[1];// get the function name
$arg_count=$stack->pop();// see how many arguments there were (cleverly stored on the stack, thank you)
$output[]=$stack->pop();// pop the function and push onto the output
if(in_array($fnn,$this->fb)){// check the argument count
if($arg_count>1)
return$this->trigger(6,"wrong number of arguments ($arg_count given, 1 expected)",array($arg_count,1));
}elseif(array_key_exists($fnn,$this->f)){
if($arg_count!=count($this->f[$fnn]['args']))
return$this->trigger(6,"wrong number of arguments ($arg_count given, ".count($this->f[$fnn]['args'])." expected)",array($arg_count,count($this->f[$fnn]['args'])));
}else{// did we somehow push a non-function on the stack? this should never happen
return$this->trigger(7,"internal error");
}
}
$index++;
//===============
}elseif($op==','and$expecting_op){// did we just finish a function argument?
while(($o2=$stack->pop())!='('){
if(is_null($o2))return$this->trigger(5,"unexpected ','",",");// oops, never had a (
else$output[]=$o2;// pop the argument expression stuff and push onto the output