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

10 lines
169 B
Ruby

def module_alias_method(x)
x.report "alias_method" do
10000.times do |i|
Foo.class_eval {
alias_method(:"test#{i}", :to_s)
}
end
end
end