public override int GetHashCode() { unchecked { return((LeftSpan.GetHashCode() * 397) ^ RightSpan.GetHashCode()); } }
public bool Equals(BraceMatchingResult other) { return(LeftSpan.Equals(other.LeftSpan) && RightSpan.Equals(other.RightSpan)); }