haikuwebkit/JSTests/microbenchmarks/direct-construct.js

23 lines
364 B
JavaScript

//@ skip if $model == "Apple Watch Series 3" # added by mark-jsc-stress-test.py
function Foo()
{
this.f = 42;
}
function bar()
{
return new Foo();
}
noInline(Foo);
noInline(bar);
(function() {
for (var i = 0; i < 10000000; ++i) {
var result = bar();
if (result.f != 42)
throw "Error: bad result: " + result;
}
})();