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_attr_ivar_set.yml

15 lines
205 B
YAML
Raw Normal View History

prelude: |
class C
attr_accessor :a, :b
def initialize
@a = nil
@b = nil
end
end
obj = C.new
benchmark:
vm_attr_ivar_set: |
obj.a = 1
obj.b = 2
loop_count: 30000000