Generators can resume
The generator object methods "next", "send", and "throw" now
include some inline assembly to set up a resumed stack frame. In some
common cases, we can just jump back into the frame to resume it.
Otherwise the resume code calls out to a runtime to fill in the operand
stack, rewind the handlers, and possibly to throw an exception.
BUG=
v8:2355
TESTS=mjsunit/harmony/generators-iteration
Committed:
http://code.google.com/p/v8/source/detail?r=14415