Exemplo n.º 1
0
 public bool Overlaps(DiffHunk other)
 {
     return(DistanceTo(other) < this.Context * 2);
 }
Exemplo n.º 2
0
 public int DistanceTo(DiffHunk other)
 {
     return(other.RemoveStart - (this.RemoveStart + this.Removed));
 }