mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* proc.c (rb_method_entry_arity): support not_implemented method.
(I have no idea to test it) git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@24307 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
9050b61dcb
commit
497ee63f8d
2 changed files with 9 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
Wed Jul 29 03:11:59 2009 Koichi Sasada <ko1@atdot.net>
|
||||
|
||||
* proc.c (rb_method_entry_arity): support not_implemented method.
|
||||
(I have no idea to test it)
|
||||
|
||||
Tue Jul 28 19:36:26 2009 Koichi Sasada <ko1@atdot.net>
|
||||
|
||||
* proc.c (rb_method_entry_arity): support optimized method (send).
|
||||
|
|
6
proc.c
6
proc.c
|
@ -1487,6 +1487,9 @@ rb_method_entry_arity(const rb_method_entry_t *me)
|
|||
return -(iseq->argc + 1 + iseq->arg_post_len);
|
||||
}
|
||||
}
|
||||
case VM_METHOD_TYPE_UNDEF:
|
||||
case VM_METHOD_TYPE_NOTIMPLEMENTED:
|
||||
return 0;
|
||||
case VM_METHOD_TYPE_OPTIMIZED: {
|
||||
switch (me->body.optimize_type) {
|
||||
case OPTIMIZED_METHOD_TYPE_SEND:
|
||||
|
@ -1495,9 +1498,8 @@ rb_method_entry_arity(const rb_method_entry_t *me)
|
|||
break;
|
||||
}
|
||||
}
|
||||
default:
|
||||
rb_bug("rb_method_entry_arity: invalid method entry type (%d)", me->type);
|
||||
}
|
||||
rb_bug("rb_method_entry_arity: invalid method entry type (%d)", me->type);
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in a new issue