Pinq\Expressions\BinaryOperationExpression::getRightOperand PHP Метод

getRightOperand() публичный Метод

public getRightOperand ( ) : Expression
Результат Expression
    public function getRightOperand()
    {
        return $this->rightOperand;
    }

Usage Example

Пример #1
0
 public function visitBinaryOperation(O\BinaryOperationExpression $expression)
 {
     $this->walk($expression->getLeftOperand());
     $this->walk($expression->getRightOperand());
     $binaryOperation = $this->typeSystem->getBinaryOperation($this->analysis[$expression->getLeftOperand()], $expression->getOperator(), $this->analysis[$expression->getRightOperand()]);
     $this->metadata[$expression] = $binaryOperation;
     $this->analysis[$expression] = $binaryOperation->getReturnType();
 }
All Usage Examples Of Pinq\Expressions\BinaryOperationExpression::getRightOperand