Sign in
chromium
/
external
/
github.com
/
WebKit
/
webkit
/
refs/heads/main
/
.
/
JSTests
/
stress
/
function-caller-async-function-body.js
blob: 8119f4666477ca8b9d189680ef59d299c37654dd [
file
] [
log
] [
blame
] [
edit
]
//@ runDefault
function
shouldBe
(
actual
,
expected
)
{
if
(
actual
!==
expected
)
throw
new
Error
(
'bad value: '
+
actual
);
}
(
function
thingy
()
{
function
bar
()
{
return
bar
.
caller
;
}
async
function
foo
()
{
shouldBe
(
bar
(),
null
);
}
foo
();
})();