Files
RubyMotion/test/Benchmark/app/benchmark/module/const_get.rb
2014-01-27 09:37:38 +09:00

15 lines
227 B
Ruby

def module_const_get(x)
x.report "const_get" do
1000000.times do
Foo.const_get(:CONST_FOO)
end
end
x.report "const_get (included)" do
1000000.times do
Bar.const_get(:CONST_BAZ)
end
end
end