コード例 #1
0
 public bool Equals(SuperCallAction other)
 {
     return(other != null && _signature.Equals(other._signature) && _lexicalScopeId == other._lexicalScopeId);
 }
コード例 #2
0
ファイル: RubyCallAction.cs プロジェクト: gaybro8777/ironruby
 public bool Equals(RubyCallAction other)
 {
     return(other != null && _methodName == other._methodName && _signature.Equals(other._signature) && other.GetType() == GetType());
 }