Files
RubyMotion/test/Benchmark/app/benchmark/object/instance_eval.rb
2014-01-27 12:48:50 +09:00

9 lines
144 B
Ruby

def object_instance_eval(x)
obj = Object.new
x.report "instance_eval" do
2000000.times do
obj.instance_eval { }
end
end
end