Source code

Revision control

Copy as Markdown

Other Tools

/*
* Any copyright is dedicated to the Public Domain.
* Contributor: Jason Orendorff
*/
function* f(a, b, c, d) {
yield arguments.length;
}
reportCompare(0, f().next().value, "bug 530879");