RubyHash hash = (RubyHash) a;
return hash.compare(context, method, b);
}
else if (a instanceof RubyArray) {
RubyArray array = (RubyArray) a;
return array.compare(context, method, b);
}
else {
return invokedynamic(context, a, method, b);
}
} finally {