PHPCfg\Op\Expr\BinaryOp::__construct PHP Method

__construct() public method

public __construct ( Operand $left, Operand $right, array $attributes = [] )
$left PHPCfg\Operand
$right PHPCfg\Operand
$attributes array
    public function __construct(Operand $left, Operand $right, array $attributes = [])
    {
        parent::__construct($attributes);
        $this->left = $this->addReadRef($left);
        $this->right = $this->addReadRef($right);
    }