Sign in
webkit
/
WebKit
/
4998104f692eb1d9136695fb6ec92704feed5358
/
.
/
JSTests
/
stress
/
async-function-create-nobaseline.js
blob: ac707153436a7bf85a84b2b71b20d9395346d5ad [
file
] [
log
] [
blame
]
function
test
(
cond
)
{
if
(
cond
)
{
var
func
=
async
function
()
{};
return
func
;
}
return
42
;
}
noInline
(
test
);
for
(
var
i
=
0
;
i
<
1e4
;
++
i
)
test
();