I think that people would generally will _expect_ `yield *` to be have like
yield inside a loop. So most people would expect:

```
yield* iterator
```

To behave like:

```
for(let val of iterator){
    yield val;
}

```

While I'm not (yet) suggesting that the behaviour should be similar in both
cases this is definitely something to consider before deciding on throwing
or suppressing.
_______________________________________________
es-discuss mailing list
[email protected]
https://mail.mozilla.org/listinfo/es-discuss

Reply via email to