We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The following code does not execute as expected:
function *example() { var value = 0; try { value = yield; value = yield; } finally { return value; } } var gen = example(); gen.next(); gen.next(1); var returnValue = gen.return(); console.log("Returned: " + returnValue);
The returned value should be equal to 1, instead undefined is returned
The text was updated successfully, but these errors were encountered:
Sorry for the delay. I've been waiting until #259 was merged to address pending issues on this repository.
Would you have time to submit a failing test case here?
Sorry, something went wrong.
9f4f1ca
No branches or pull requests
The following code does not execute as expected:
The returned value should be equal to 1, instead undefined is returned
The text was updated successfully, but these errors were encountered: