&& vertex.getReceiverVertex() != null) {
String realName = vertex.getName().substring(prefix.length());
for (IRubyObject receiver : vertex.getReceiverVertex().getTypeSet()) {
RubyClass receiverType = receiver.getMetaClass();
if (receiverType != null) {
SourceLocation location = null;
// Try to find method
// TODO callSuper
Method method = (Method) receiverType.searchMethod(realName);
if (method != null) {