aboutsummaryrefslogtreecommitdiffstats
path: root/benchmark
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-09-28 18:10:16 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-09-28 18:10:16 +0000
commit7f99972869c33010e842be4075378aeb08d30b6c (patch)
tree5acf7a7e3b57aececb9ca141c4b3a196586ae67c /benchmark
parent866952300dc14ca2803e64992bee41d59a3c074e (diff)
downloadruby-7f99972869c33010e842be4075378aeb08d30b6c.tar.gz
benchmark for symbol block passing
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51968 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'benchmark')
-rw-r--r--benchmark/bm_vm2_symbol_block_pass.rb3
1 files changed, 3 insertions, 0 deletions
diff --git a/benchmark/bm_vm2_symbol_block_pass.rb b/benchmark/bm_vm2_symbol_block_pass.rb
new file mode 100644
index 0000000000..c8d6532bef
--- /dev/null
+++ b/benchmark/bm_vm2_symbol_block_pass.rb
@@ -0,0 +1,3 @@
+class C; 1000.times{|i|eval("def i#{i};end")}; end
+c = C.new; m = C.instance_methods(false)
+1_000.times{m.each{|n|c.tap(&n)}}