예제 #1
0
파일: Diff.cs 프로젝트: plonk/monodevelop
 public bool Overlaps(DiffHunk other)
 {
     return(DistanceTo(other) < this.Context * 2);
 }
예제 #2
0
파일: Diff.cs 프로젝트: plonk/monodevelop
 public int DistanceTo(DiffHunk other)
 {
     return(other.RemoveStart - (this.RemoveStart + this.Removed));
 }