Sign in
webkit
/
WebKit
/
73d489c153bea24ba07ff63ba8b8ea61cc2bba7a
/
.
/
JSTests
/
microbenchmarks
/
json-parse-object-reviver-same-value.js
blob: 9c8517ddb580167a82c8c2ee9cb544a58e00c2e2 [
file
] [
log
] [
blame
]
//@ skip if $model == "Apple Watch Series 3" # added by mark-jsc-stress-test.py
const
json
=
JSON
.
stringify
({
a
:
0
,
b
:
1
,
c
:
2
,
d
:
3
,
e
:
4
,
f
:
5
,
g
:
6
,
h
:
7
,
i
:
8
,
j
:
9
});
for
(
let i
=
0
;
i
<
1e5
;
++
i
)
JSON
.
parse
(
json
,
(
_key
,
val
)
=>
val
);