Sign in
webkit
/
WebKit
/
18eafb7225658eb078fb4b435c7e6f4bc55edf7a
/
.
/
JSTests
/
stress
/
function-caller-generator-body.js
blob: 70738a400abb6a65f1802ead5b315a253d4d4ecf [
file
] [
log
] [
blame
]
//@ runDefault
function
shouldBe
(
actual
,
expected
)
{
if
(
actual
!==
expected
)
throw
new
Error
(
'bad value: '
+
actual
);
}
(
function
thingy
()
{
function
bar
()
{
return
bar
.
caller
;
}
function
*
foo
()
{
shouldBe
(
bar
(),
null
);
}
foo
().
next
();
})();