WebKit Bugzilla
New
Browse
Search+
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED DUPLICATE of
bug 175240
167727
[ESNext] Async iteration - Implement yield *: Delegation of async generator
https://bugs.webkit.org/show_bug.cgi?id=167727
Summary
[ESNext] Async iteration - Implement yield *: Delegation of async generator
GSkachkov
Reported
2017-02-02 01:56:04 PST
Implement yield* Delegation of async generator
https://tc39.github.io/proposal-async-iteration/#sec-asyncgenerator-definitions-evaluation
''' function* boo() { yield 1; yield 2; } function* foo() { yield* boo(); yield 3; } var iter = foo(); print(iter.next().value); // 1, done = false print(iter.next().value); // 2, done = false print(iter.next().value); // 3, done = false print(iter.next().value); // undefined, done = true '''
Attachments
Add attachment
proposed patch, testcase, etc.
GSkachkov
Comment 1
2017-08-23 10:47:50 PDT
Fixed in
https://bugs.webkit.org/show_bug.cgi?id=175240
*** This bug has been marked as a duplicate of
bug 175240
***
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug