aboutsummaryrefslogtreecommitdiffstats
path: root/proc.c
diff options
context:
space:
mode:
authorJeremy Evans <code@jeremyevans.net>2021-12-27 09:39:15 -0800
committerBenoit Daloze <eregontp@gmail.com>2022-08-20 13:44:00 +0200
commit8212aab81a77a2a91fb7c1681b4968171193b48f (patch)
tree05894efbb106ad56f06a25b9bbfd9432440c7ad9 /proc.c
parentb32a3f1275a8c7748f2134492ce3c532f277d261 (diff)
downloadruby-8212aab81a77a2a91fb7c1681b4968171193b48f.tar.gz
Make Object#method and Module#instance_method not skip ZSUPER methods
Based on https://github.com/jeremyevans/ruby/commit/c95e7e5329140f640b6497905485761f3336d967 Among other things, this fixes calling visibility methods (public?, protected?, and private?) on them. It also fixes #owner to show the class the zsuper method entry is defined in, instead of the original class it references. For some backwards compatibility, adjust #parameters and #source_location, to show the parameters and source location of the method originally defined. Also have the parameters and source location still be shown by #inspect. Clarify documentation of {Method,UnboundMethod}#owner. Add tests based on the description of https://bugs.ruby-lang.org/issues/18435 and based on https://github.com/ruby/ruby/pull/5356#issuecomment-1005298809 Fixes [Bug #18435] [Bug #18729] Co-authored-by: Benoit Daloze <eregontp@gmail.com>
Diffstat (limited to 'proc.c')
-rw-r--r--proc.c63
1 files changed, 46 insertions, 17 deletions
diff --git a/proc.c b/proc.c
index 3c52fb06a7..dbf28aa55e 100644
--- a/proc.c
+++ b/proc.c
@@ -1684,7 +1684,6 @@ mnew_internal(const rb_method_entry_t *me, VALUE klass, VALUE iclass,
VALUE method;
rb_method_visibility_t visi = METHOD_VISI_UNDEF;
- again:
if (UNDEFINED_METHOD_ENTRY_P(me)) {
if (respond_to_missing_p(klass, obj, ID2SYM(id), scope)) {
return mnew_missing(klass, obj, id, mclass);
@@ -1700,19 +1699,6 @@ mnew_internal(const rb_method_entry_t *me, VALUE klass, VALUE iclass,
rb_print_inaccessible(klass, id, visi);
}
}
- if (me->def->type == VM_METHOD_TYPE_ZSUPER) {
- if (me->defined_class) {
- VALUE klass = RCLASS_SUPER(RCLASS_ORIGIN(me->defined_class));
- id = me->def->original_id;
- me = (rb_method_entry_t *)rb_callable_method_entry_with_refinements(klass, id, &iclass);
- }
- else {
- VALUE klass = RCLASS_SUPER(RCLASS_ORIGIN(me->owner));
- id = me->def->original_id;
- me = rb_method_entry_without_refinements(klass, id, &iclass);
- }
- goto again;
- }
method = TypedData_Make_Struct(mclass, struct METHOD, &method_data_type, data);
@@ -1934,7 +1920,15 @@ method_original_name(VALUE obj)
* call-seq:
* meth.owner -> class_or_module
*
- * Returns the class or module that defines the method.
+ * Returns the class or module on which this method is defined.
+ * In other words,
+ *
+ * meth.owner.instance_methods(false).include?(meth.name) # => true
+ *
+ * holds as long as the method is not removed/undefined/replaced,
+ * (with private_instance_methods instead of instance_methods if the method
+ * is private).
+ *
* See also Method#receiver.
*
* (1..3).method(:map).owner #=> Enumerable
@@ -2951,6 +2945,24 @@ rb_method_entry_location(const rb_method_entry_t *me)
return method_def_location(me->def);
}
+static VALUE method_super_method(VALUE method);
+
+static const rb_method_definition_t *
+zsuper_ref_method_def(VALUE method)
+{
+ const rb_method_definition_t *def = rb_method_def(method);
+ VALUE super_method;
+ while (def->type == VM_METHOD_TYPE_ZSUPER) {
+ super_method = method_super_method(method);
+ if (NIL_P(super_method)) {
+ break;
+ }
+ method = super_method;
+ def = rb_method_def(method);
+ }
+ return def;
+}
+
/*
* call-seq:
* meth.source_location -> [String, Integer]
@@ -2962,7 +2974,7 @@ rb_method_entry_location(const rb_method_entry_t *me)
VALUE
rb_method_location(VALUE method)
{
- return method_def_location(rb_method_def(method));
+ return method_def_location(zsuper_ref_method_def(method));
}
static const rb_method_definition_t *
@@ -3050,7 +3062,7 @@ method_def_parameters(const rb_method_definition_t *def)
static VALUE
rb_method_parameters(VALUE method)
{
- return method_def_parameters(rb_method_def(method));
+ return method_def_parameters(zsuper_ref_method_def(method));
}
/*
@@ -3112,6 +3124,23 @@ method_inspect(VALUE method)
if (data->me->def->type == VM_METHOD_TYPE_ALIAS) {
defined_class = data->me->def->body.alias.original_me->owner;
}
+ else if (data->me->def->type == VM_METHOD_TYPE_ZSUPER) {
+ const rb_method_definition_t *zsuper_ref_def = data->me->def;
+ struct METHOD *zsuper_ref_data;
+ VALUE super_method;
+
+ do {
+ super_method = method_super_method(method);
+ if (NIL_P(super_method)) {
+ break;
+ }
+ method = super_method;
+ zsuper_ref_def = rb_method_def(method);
+ } while (zsuper_ref_def->type == VM_METHOD_TYPE_ZSUPER);
+
+ TypedData_Get_Struct(method, struct METHOD, &method_data_type, zsuper_ref_data);
+ defined_class = method_entry_defined_class(zsuper_ref_data->me);
+ }
else {
defined_class = method_entry_defined_class(data->me);
}