Home
last modified time | relevance | path

Searched refs:operand (Results 1 – 3 of 3) sorted by relevance

/template/strap/vendor/antlr/antlr4-php-runtime/src/Atn/SemanticContexts/
H A DOrOperator.php20 public $operand; variable in Antlr\\Antlr4\\Runtime\\Atn\\SemanticContexts\\OrOperator
27 foreach ($a->operand as $o) {
35 foreach ($b->operand as $o) {
53 $this->operand = $operands->getValues();
61 return $this->operand;
72 foreach ($this->operand as $operand) {
73 if ($operand->eval($parser, $parserCallStack)) {
86 foreach ($this->operand as $context) {
111 foreach ($operands as $operand) {
112 $result = $result === null ? $operand : SemanticContext::orContext($result, $operand);
[all …]
H A DAndOperator.php70 foreach ($this->operands as $operand) {
71 if (!$operand->eval($parser, $parserCallStack)) {
109 foreach ($operands as $operand) {
110 $result = $result === null ? $operand : self::andContext($result, $operand);
H A DSemanticContext.php65 return \count($result->operand) === 1 ? $result->operand[0] : $result;