Benjamin (Inglor) Gruenbaum (2015-01-31T19:18:14.000Z)
d at domenic.me (2015-02-13T23:48:21.800Z)
Oh, I completely agree that `yield *` is not just desugared into the above for...of loop form. I'm just saying that that's how most developers will likely look at it. Adding a while loop that calls the inner iterator's next with the same value wouldn't change what developers would expect here. I'm not arguing for one solution or another - just making the point that if it'll be anything like python's yield from - when developers _think_ of yield* they'll think of pumping an iterator from another iterator and expect the behaviour of throw to be similar.