Update ReadMe.md
[qtwebkit.git] / JSTests / microbenchmarks / strict-osr-entry.js
blobd7546878d47d3f10608084fb1b8e78cdd6ecc94e
1 "use strict";
3 (function() {
4     let o = {
5         apply_(a, b) {
6             return a + b;
7         }
8     };
9     
10     let result = 0;
11     for (let i = 0; i < 10000000; ++i)
12         result = o.apply_(result, 1);
13     
14     if (result != 10000000)
15         throw new "Bad result: " + result;
16 })();