Sign in
chromium
/
external
/
github.com
/
WebKit
/
webkit
/
refs/heads/main
/
.
/
JSTests
/
stress
/
function-caller-async-arrow-function-body.js
blob: ea3cad81e267ccec90a1c7864fce099ab653afb7 [
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
;
}
var
foo
=
async
()
=>
{
shouldBe
(
bar
(),
null
);
}
foo
();
})();