haikuwebkit/JSTests/microbenchmarks/string-get-by-val.js

12 lines
284 B
JavaScript

//@ skip if $model == "Apple Watch Series 3" # added by mark-jsc-stress-test.py
function foo(string) {
var result;
for (var i = 0; i < 1000000; ++i)
result = string[0];
return result;
}
var result = foo("x");
if (result != "x")
throw "Bad result: " + result;