1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/benchmark/vm_super.yml

18 lines
172 B
YAML
Raw Normal View History

prelude: |
class C
def m
1
end
end
class CC < C
def m
super()
end
end
obj = CC.new
benchmark:
vm_super: obj.m
loop_count: 6000000