summaryrefslogtreecommitdiff
path: root/benchmark/vm2_method_missing.yml
blob: 742c3dd9db2c019069550302c0b38a5f3eb66464 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
benchmark:
  vm2_method_missing: |
    class C
      def method_missing mid
      end
    end

    obj = C.new

    i = 0
    while i<6_000_000 # benchmark loop 2
      i += 1
      obj.m; obj.m; obj.m; obj.m; obj.m; obj.m; obj.m; obj.m;
    end
loop_count: 1