blob: b8af1d17f9a46426045fc79d314969517561e45c [file] [log] [blame]
//@ skip if $model == "Apple Watch Series 3" # added by mark-jsc-stress-test.py
function test(prototype)
{
return Object.create(prototype);
}
var prototype = {foo: 42};
for (var i = 0; i < 1e5; ++i) {
test(prototype);
}