mirror of
https://github.com/zhigang1992/RubyMotion.git
synced 2026-04-16 23:10:54 +08:00
15 lines
253 B
Ruby
15 lines
253 B
Ruby
def module_const_set(x)
|
|
x.report "const_set" do
|
|
100000.times do |i|
|
|
Foo.const_set(:"CONST_FOO#{i}", 42)
|
|
end
|
|
end
|
|
|
|
x.report "const_set (included)" do
|
|
100000.times do |i|
|
|
Bar.const_set(:"CONST_BAZ#{i}", 42)
|
|
end
|
|
end
|
|
|
|
end
|