Flow\Expression\BinaryExpression::__construct PHP Method

__construct() public method

public __construct ( $left, $right, $line )
    public function __construct($left, $right, $line)
    {
        parent::__construct($line);
        $this->left = $left;
        $this->right = $right;
    }
BinaryExpression