summaryrefslogtreecommitdiff
path: root/benchmark/vm2_super.yml
blob: 674743762a64dc2b2e093ac92ea2ad524422f0f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
prelude: |
  class C
    def m
      1
    end
  end

  class CC < C
    def m
      super()
    end
  end

  obj = CC.new
benchmark:
  vm2_super: obj.m
loop_count: 6000000