Exemplo n.º 1
0
 public function __construct($input = '', $output = '', $otype = null, $priority = 1, $arity = 1, $associativity = null, $fixity = null)
 {
     parent::__construct(is_string($input) ? array($input, $arity) : $input, Xpresion::PREFIX, null !== $associativity ? $associativity : Xpresion::RIGHT, $priority, $output, $otype, null !== $fixity ? $fixity : Xpresion::PREFIX);
     $this->type = Xpresion::T_FUN;
 }