Sign in
webkit
/
WebKit
/
f1095492798604e06f5352119d809a23fbfb4219
/
.
/
JSTests
/
microbenchmarks
/
object-create-constant-prototype.js
blob: 014d878923cb24979ce859a666de42eaa2d20d13 [
file
] [
log
] [
blame
]
function
test
(
prototype
)
{
return
Object
.
create
(
prototype
);
}
var
prototype
=
{
foo
:
42
};
for
(
var
i
=
0
;
i
<
1e5
;
++
i
)
{
test
(
prototype
);
}