예제 #1
0
 public bool Equals(ClosureDebugInfo other)
 {
     return(SyntaxOffset == other.SyntaxOffset &&
            ClosureId.Equals(other.ClosureId));
 }
예제 #2
0
 public bool Equals(LambdaDebugInfo other)
 {
     return(SyntaxOffset == other.SyntaxOffset &&
            ClosureOrdinal == other.ClosureOrdinal &&
            LambdaId.Equals(other.LambdaId));
 }