示例#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));
 }