mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* proc.c (rb_method_entry_arity): support optimized method (send).
* test/ruby/test_method.rb: add a test for above. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@24306 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
49991ff6f8
commit
9050b61dcb
3 changed files with 18 additions and 0 deletions
|
@ -1,3 +1,9 @@
|
|||
Tue Jul 28 19:36:26 2009 Koichi Sasada <ko1@atdot.net>
|
||||
|
||||
* proc.c (rb_method_entry_arity): support optimized method (send).
|
||||
|
||||
* test/ruby/test_method.rb: add a test for above.
|
||||
|
||||
Tue Jul 28 04:34:05 2009 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp>
|
||||
|
||||
* ext/tk/lib/extconf.rb: bug fix and ignore invalid Tcl/Tk libraries.
|
||||
|
|
8
proc.c
8
proc.c
|
@ -1487,6 +1487,14 @@ rb_method_entry_arity(const rb_method_entry_t *me)
|
|||
return -(iseq->argc + 1 + iseq->arg_post_len);
|
||||
}
|
||||
}
|
||||
case VM_METHOD_TYPE_OPTIMIZED: {
|
||||
switch (me->body.optimize_type) {
|
||||
case OPTIMIZED_METHOD_TYPE_SEND:
|
||||
return -1;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
}
|
||||
default:
|
||||
rb_bug("rb_method_entry_arity: invalid method entry type (%d)", me->type);
|
||||
}
|
||||
|
|
|
@ -51,6 +51,10 @@ class TestMethod < Test::Unit::TestCase
|
|||
assert_equal(-3, method(:mo6).arity)
|
||||
end
|
||||
|
||||
def test_arity_special
|
||||
assert_equal(-1, method(:__send__).arity)
|
||||
end
|
||||
|
||||
def test_unbind
|
||||
assert_equal(:derived, Derived.new.foo)
|
||||
um = Derived.new.method(:foo).unbind
|
||||
|
|
Loading…
Reference in a new issue