mirror of
https://github.com/zhigang1992/RubyMotion.git
synced 2026-04-05 22:40:25 +08:00
15 lines
227 B
Ruby
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
|