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