mirror of
https://github.com/zhigang1992/RubyMotion.git
synced 2026-04-03 09:45:14 +08:00
10 lines
169 B
Ruby
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
|