Beispiel #1
0
 public bool Equals1(BranchInfo other)
 {
     return(_myStart.Equals1(other._myStart) && _myLabel.Equals(other._myLabel));
 }
Beispiel #2
0
 /// <summary>
 /// We only need to compare the start point. Can only have a single
 /// brach from the exact address, so if label doesn't match we have
 /// bigger problems.
 /// </summary>
 /// <param name="other"></param>
 /// <returns></returns>
 public bool Equals(ILLocation start)
 {
     return(_myStart.Equals1(start));
 }