Skip to content

Commit

Permalink
* vm_eval.c (check_funcall): try respond_to? first if redefined.
Browse files Browse the repository at this point in the history
  [Bug ruby#5158]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@32855 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
  • Loading branch information
nobu committed Aug 5, 2011
1 parent 2205687 commit 55148a2
Show file tree
Hide file tree
Showing 4 changed files with 44 additions and 5 deletions.
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
Fri Aug 5 12:18:20 2011 Nobuyoshi Nakada <[email protected]>

* vm_eval.c (check_funcall): try respond_to? first if redefined.
[Bug #5158]

Fri Aug 05 09:48:22 2011 Eric Hodel <[email protected]>

* lib/rubygems: Import RubyGems 1.8.7:
Expand Down
25 changes: 25 additions & 0 deletions test/ruby/test_object.rb
Original file line number Diff line number Diff line change
Expand Up @@ -396,6 +396,31 @@ def method_missing(id, *args)
end
end

def test_implicit_respond_to
bug5158 = '[ruby-core:38799]'

p = Object.new

called = []
p.singleton_class.class_eval do
define_method(:to_ary) do
called << [:to_ary, bug5158]
end
end
[[p]].flatten
assert_equal([[:to_ary, bug5158]], called, bug5158)

called = []
p.singleton_class.class_eval do
define_method(:respond_to?) do |*a|
called << [:respond_to?, *a]
false
end
end
[[p]].flatten
assert_equal([[:respond_to?, :to_ary, true]], called, bug5158)
end

def test_send_with_no_arguments
assert_raise(ArgumentError) { 1.send }
end
Expand Down
2 changes: 1 addition & 1 deletion test/ruby/test_proc.rb
Original file line number Diff line number Diff line change
Expand Up @@ -787,7 +787,7 @@ def test_attr_source_location
end

def test_splat_without_respond_to
def (obj = Object.new).respond_to?(m); false end
def (obj = Object.new).respond_to?(m,*); false end
[obj].each do |a, b|
assert_equal([obj, nil], [a, b], '[ruby-core:24139]')
end
Expand Down
17 changes: 13 additions & 4 deletions vm_eval.c
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ stack_check(void)
}

static inline rb_method_entry_t *rb_search_method_entry(VALUE recv, ID mid);
static inline int rb_method_call_status(rb_thread_t *th, rb_method_entry_t *me, call_type scope, VALUE self);
static inline int rb_method_call_status(rb_thread_t *th, const rb_method_entry_t *me, call_type scope, VALUE self);
#define NOEX_OK NOEX_NOSUPER

/*!
Expand Down Expand Up @@ -265,10 +265,19 @@ check_funcall_failed(struct rescue_funcall_args *args, VALUE e)
static VALUE
check_funcall(VALUE recv, ID mid, int argc, VALUE *argv)
{
rb_method_entry_t *me = rb_search_method_entry(recv, mid);
const rb_method_entry_t *me = rb_method_entry(CLASS_OF(recv), idRespond_to);
rb_thread_t *th = GET_THREAD();
int call_status = rb_method_call_status(th, me, CALL_FCALL, Qundef);
int call_status;

if (me && !(me->flag & NOEX_BASIC)) {
VALUE args[2] = {ID2SYM(mid), Qtrue};
if (!RTEST(vm_call0(th, recv, idRespond_to, 2, args, me))) {
return Qundef;
}
}

me = rb_search_method_entry(recv, mid);
call_status = rb_method_call_status(th, me, CALL_FCALL, Qundef);
if (call_status != NOEX_OK) {
if (rb_method_basic_definition_p(CLASS_OF(recv), idMethodMissing)) {
return Qundef;
Expand Down Expand Up @@ -375,7 +384,7 @@ rb_search_method_entry(VALUE recv, ID mid)
}

static inline int
rb_method_call_status(rb_thread_t *th, rb_method_entry_t *me, call_type scope, VALUE self)
rb_method_call_status(rb_thread_t *th, const rb_method_entry_t *me, call_type scope, VALUE self)
{
VALUE klass;
ID oid;
Expand Down

0 comments on commit 55148a2

Please sign in to comment.