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

  class CC < C
    def m a
      super
    end
  end

  obj = CC.new
benchmark:
  vm_zsuper: |
    obj.m 10
loop_count: 6000000