blob: 2a60a75db12c2003c3293f6ee157ed539c1ca4c7 [file] [log] [blame]
//@ skip if $model == "Apple Watch Series 3" # added by mark-jsc-stress-test.py
"use strict";
(function() {
let o = {
apply_(a, b) {
return a + b;
}
};
let result = 0;
for (let i = 0; i < 10000000; ++i)
result = o.apply_(result, 1);
if (result != 10000000)
throw new "Bad result: " + result;
})();