mirror of
https://github.com/zhigang1992/RubyMotion.git
synced 2026-04-04 09:38:00 +08:00
9 lines
144 B
Ruby
9 lines
144 B
Ruby
def object_instance_eval(x)
|
|
obj = Object.new
|
|
x.report "instance_eval" do
|
|
2000000.times do
|
|
obj.instance_eval { }
|
|
end
|
|
end
|
|
end
|