Sign in
webkit
/
WebKit
/
6ddf72b170615ecec95a6e91c205227cc12d556b
/
.
/
JSTests
/
microbenchmarks
/
object-create-constant-prototype.js
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
);
}