mirror of
https://github.com/zhigang1992/RubyMotion.git
synced 2026-04-03 09:45:14 +08:00
9 lines
135 B
Ruby
9 lines
135 B
Ruby
def object_method_missing(x)
|
|
obj = User.new
|
|
x.report "method_missing" do
|
|
100000.times do
|
|
obj.foobarbaz
|
|
end
|
|
end
|
|
end
|