/// <inheritdoc />
 public bool Equals(MorestachioOperatorExpression other)
 {
     return(Location.Equals(other.Location) &&
            Operator.OperatorText.Equals(other.Operator.OperatorText) &&
            LeftExpression.Equals(other.LeftExpression) &&
            (RightExpression == other.RightExpression || RightExpression.Equals(other.RightExpression)));
 }