Sign in
webkit
/
WebKit
/
572c0adf7599f759ed03bc06b22aabd422a83336
/
.
/
JSTests
/
microbenchmarks
/
put-slow-no-cache-long-prototype-chain.js
blob: 53723de68f3cd617bda36ef3644f76f5da2e4811 [
file
] [
log
] [
blame
]
(
function
()
{
var
base
=
{
set
foo
(
_v
)
{}
};
for
(
var
i
=
0
;
i
<
1e3
;
i
++)
base
=
Object
.
create
(
base
);
for
(
var
j
=
0
;
j
<
3e3
;
j
++)
base
[
"foo"
+
j
]
=
j
;
})();