Sign in
webkit
/
WebKit
/
9f8388ebdf099a98ce75d93c131e5941dc4da269
/
.
/
JSTests
/
stress
/
create-rest-while-having-a-bad-time.js
blob: e599681becc1abd08c4859e957464f6dfb5fd6bf [
file
] [
log
] [
blame
]
"use strict"
;
function
f
(...
v
)
{
return
g
(
v
);
}
function
g
()
{
return
h
();
}
function
h
()
{
}
for
(
let i
=
0
;
i
<
10000
;
++
i
)
{
f
(
0
);
f
(
0
,
0
);
}
Object
.
defineProperty
(
Array
.
prototype
,
"42"
,
{});