aboutsummaryrefslogtreecommitdiffstats
path: root/benchmark/vm2_method_missing.yml
diff options
context:
space:
mode:
Diffstat (limited to 'benchmark/vm2_method_missing.yml')
-rw-r--r--benchmark/vm2_method_missing.yml15
1 files changed, 15 insertions, 0 deletions
diff --git a/benchmark/vm2_method_missing.yml b/benchmark/vm2_method_missing.yml
new file mode 100644
index 0000000000..742c3dd9db
--- /dev/null
+++ b/benchmark/vm2_method_missing.yml
@@ -0,0 +1,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