зеркало из https://github.com/github/ruby.git
* vm_insnhelper.c (vm_call_method_missing): method_missing should
not be refined. [ruby-core:72080] [Bug #11809] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53060 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
7fe3c2665e
Коммит
3703ebbe84
|
@ -1,3 +1,9 @@
|
|||
Sun Dec 13 00:05:42 2015 Shugo Maeda <shugo@ruby-lang.org>
|
||||
|
||||
* vm_insnhelper.c (vm_call_method_missing): method_missing should
|
||||
not be refined.
|
||||
[ruby-core:72080] [Bug #11809]
|
||||
|
||||
Sat Dec 12 23:00:17 2015 NARUSE, Yui <naruse@ruby-lang.org>
|
||||
|
||||
* ext/nkf/nkf-utf8/nkf.c: Merge nkf 2.1.4.
|
||||
|
|
|
@ -1594,6 +1594,31 @@ class TestRefinement < Test::Unit::TestCase
|
|||
assert_equal([:R2_baz, [:R1_foo, :orig_foo]], MixedUsing2.f2)
|
||||
end
|
||||
|
||||
module MethodMissing
|
||||
class Foo
|
||||
end
|
||||
|
||||
module Bar
|
||||
refine Foo do
|
||||
def method_missing(mid, *args)
|
||||
"method_missing refined"
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
using Bar
|
||||
|
||||
def self.call_undefined_method
|
||||
Foo.new.foo
|
||||
end
|
||||
end
|
||||
|
||||
def test_method_missing
|
||||
assert_raise(NoMethodError) do
|
||||
MethodMissing.call_undefined_method
|
||||
end
|
||||
end
|
||||
|
||||
private
|
||||
|
||||
def eval_using(mod, s)
|
||||
|
|
|
@ -1953,7 +1953,9 @@ vm_call_method_missing(rb_thread_t *th, rb_control_frame_t *reg_cfp, struct rb_c
|
|||
ci = &ci_entry;
|
||||
|
||||
cc_entry = *orig_cc;
|
||||
cc_entry.me = rb_callable_method_entry(CLASS_OF(calling->recv), idMethodMissing);
|
||||
cc_entry.me =
|
||||
rb_callable_method_entry_without_refinements(CLASS_OF(calling->recv),
|
||||
idMethodMissing);
|
||||
cc = &cc_entry;
|
||||
|
||||
calling->argc = argc;
|
||||
|
|
Загрузка…
Ссылка в новой задаче