aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorshugo <shugo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-11-11 02:42:04 +0000
committershugo <shugo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-11-11 02:42:04 +0000
commitba5ea548cefd82307e96a6308e2b85425030e461 (patch)
tree27f9df6be03c820d326a854fc39b7c735e595c7f /test
parent35020e355cdabd2edf1d9e264cd1ff12993fe027 (diff)
downloadruby-ba5ea548cefd82307e96a6308e2b85425030e461.tar.gz
* vm_core.h (rb_call_info_t::refinements), compile.c (new_callinfo):
add a new field for inline method cache. * vm_insnhelper.c (vm_search_method): check rb_call_info_t::refinements not to confuse inline method cache when module_eval is used with refinements. * test/ruby/test_refinement.rb: related test. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@37616 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_refinement.rb24
1 files changed, 24 insertions, 0 deletions
diff --git a/test/ruby/test_refinement.rb b/test/ruby/test_refinement.rb
index aeb519c18d..12a00bb16c 100644
--- a/test/ruby/test_refinement.rb
+++ b/test/ruby/test_refinement.rb
@@ -685,4 +685,28 @@ class TestRefinement < Test::Unit::TestCase
assert_equal("#<refinement:#{c.inspect}@#{m.inspect}>",
m.refinements[c].inspect)
end
+
+ module InlineMethodCache
+ class C
+ def foo
+ "original"
+ end
+ end
+
+ module M
+ refine C do
+ def foo
+ "refined"
+ end
+ end
+ end
+ end
+
+ def test_inline_method_cache
+ c = InlineMethodCache::C.new
+ f = Proc.new { c.foo }
+ assert_equal("original", f.call)
+ assert_equal("refined", InlineMethodCache::M.module_eval(&f))
+ assert_equal("original", f.call)
+ end
end