mirror of
https://github.com/ruby/ruby.git
synced 2025-09-17 09:33:59 +02:00
merge revision(s) d8a13e5049
: [Backport #17780]
[Bug #17780] Fix Method#super_method for module alias
Method#super_method crashes for aliased module methods because they are
not defined on a class. This bug was introduced in
c60aaed185
as part of bug #17130.
---
proc.c | 2 +-
test/ruby/test_method.rb | 13 +++++++++++++
2 files changed, 14 insertions(+), 1 deletion(-)
This commit is contained in:
parent
fc73fc79cb
commit
410216c9db
3 changed files with 15 additions and 2 deletions
2
proc.c
2
proc.c
|
@ -3199,7 +3199,7 @@ method_super_method(VALUE method)
|
|||
TypedData_Get_Struct(method, struct METHOD, &method_data_type, data);
|
||||
iclass = data->iclass;
|
||||
if (!iclass) return Qnil;
|
||||
if (data->me->def->type == VM_METHOD_TYPE_ALIAS) {
|
||||
if (data->me->def->type == VM_METHOD_TYPE_ALIAS && data->me->defined_class) {
|
||||
super_class = RCLASS_SUPER(rb_find_defined_class_by_owner(data->me->defined_class,
|
||||
data->me->def->body.alias.original_me->owner));
|
||||
mid = data->me->def->body.alias.original_me->def->original_id;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue