Home | History | Annotate | Download | only in ast

Lines Matching refs:Yield

94   V(Yield)                      \
2496 // Our Yield is different from the JS yield in that it "returns" its argument as
2499 class Yield final : public Expression {
2520 Yield(Expression* generator_object, Expression* expression, int pos,
3484 Yield* NewYield(Expression* generator_object, Expression* expression, int pos,
3485 Yield::OnException on_exception) {
3487 return new (zone_) Yield(generator_object, expression, pos, on_exception);