On Thu, May 10, 2012 at 12:48 PM, Axel Rauschmayer <[email protected]> wrote: > I don’t like the implicit iteration of the operand that happens for yield* > this.left. To me, superficially, it looks like this.left is yielded.
That is what the star is for. yield* requires an iterable operand, just like for-of. If you pass something non iterable it throws. -- erik _______________________________________________ es-discuss mailing list [email protected] https://mail.mozilla.org/listinfo/es-discuss

