Searched refs:operands (Results 1 – 5 of 5) sorted by relevance
20 public $operands; variable in Antlr\\Antlr4\\Runtime\\Atn\\SemanticContexts\\AndOperator25 $operands = new Set();28 $operands->addAll($a->operands);30 $operands->add($a);34 $operands->addAll($b->operands);36 $operands->add($b);40 $precedencePredicates = self::filterPrecedencePredicates($operands);48 $operands->add($reduced);51 $this->operands = $operands->getValues();59 return $this->operands;[all …]
24 $operands = new Set();28 $operands->add($o);31 $operands->add($a);36 $operands->add($o);39 $operands->add($b);42 $precedencePredicates = self::filterPrecedencePredicates($operands);50 $operands->add($reduced);53 $this->operand = $operands->getValues();85 $operands = [];97 $operands[] = $evaluated;[all …]
46 return \count($result->operands) === 1 ? $result->operands[0] : $result;
106 $operands = $node->getOperandNamesToEscape();107 if (2 < \count($operands)) {108 …\sprintf('Operators with more than 2 operands are not supported yet, got %d.', \count($operands)));109 } elseif (2 === \count($operands)) {110 …is->intersectSafe($this->getSafe($node->getNode($operands[0])), $this->getSafe($node->getNode($ope…
103 * Introduce expression parser classes to describe operators and operands provided by extensions