Sign in
webkit
/
WebKit
/
293423b2e3bc99a3b6b08c9e39c59d8eb89f00e1
/
.
/
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
();