Sign in
webkit
/
WebKit
/
14cb98a360e661c1b39a648e8ccc3be2e2757789
/
.
/
JSTests
/
stress
/
function-caller-async-generator-body.js
blob: 871da9f138eb65bd1708a282e9c0f59eb339d6ad [
file
] [
log
] [
blame
]
//@ 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
().
next
();
})();