DescriptionMIPS: Implement yield* (delegating yield)
Port r14669 (b64ce42a)
Original commit message:
Ideally this would have been implemented via desugaring at parse-time,
but yield* is an expression, and its desugaring includes statements like
while and try/catch. We'd have to have BlockExpression in the AST to
support that, and it's not worth it for this feature.
So instead we implement all of the logic in
FullCodeGenerator::VisitYield. Delegating yield AST nodes now have a
try handler index, for the try/catch. Otherwise the implementation is
straightforward.
BUG=
Committed: https://code.google.com/p/v8/source/detail?r=14712
Patch Set 1 #
Messages
Total messages: 3 (0 generated)
|