summaryrefslogtreecommitdiff
path: root/benchmark/vm2_super.yml
blob: 79da4ac63ab45c53ec15c37bd1f5dce10efbccbf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
prelude: |2

  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