prelude: |
class C1
def m; 1; end
end
o1 = C1.new
o2 = C1.new
o2.singleton_class
benchmark:
vm2_poly_singleton: |
o = (i % 2 == 0) ? o1 : o2
o.m; o.m; o.m; o.m; o.m; o.m; o.m; o.m
loop_count: 6000000