// If this call instruction is in a class method, we'll fetch a class method
// If this call instruction is in an instance method, we'll fetch an instance method
else if ((receiver instanceof LocalVariable) && (((LocalVariable)receiver).isSelf())) {
return null;
} else {
IRClass c = receiver.getTargetClass();
return c == null ? null : c.getInstanceMethod(mname);
}
}