Index: src/parsing/parser.h |
diff --git a/src/parsing/parser.h b/src/parsing/parser.h |
index a898511b237afe925acf65d351c7ca40258aebbb..1f5adfca5b25c7cf9a90cb1d835a13fc7918075a 100644 |
--- a/src/parsing/parser.h |
+++ b/src/parsing/parser.h |
@@ -449,16 +449,17 @@ class V8_EXPORT_PRIVATE Parser : public NON_EXPORTED_BASE(ParserBase<Parser>) { |
// !%_IsJSReceiver(result = iterator.next()) && |
// %ThrowIteratorResultNotAnObject(result) |
Expression* BuildIteratorNextResult(Expression* iterator, Variable* result, |
- int pos); |
+ IteratorType type, int pos); |
// Initialize the components of a for-in / for-of statement. |
Statement* InitializeForEachStatement(ForEachStatement* stmt, |
Expression* each, Expression* subject, |
Statement* body, int each_keyword_pos); |
- Statement* InitializeForOfStatement(ForOfStatement* stmt, Expression* each, |
+ Statement* InitializeForOfStatement(ForEachStatement* stmt, Expression* each, |
Expression* iterable, Statement* body, |
- bool finalize, |
+ bool finalize, IteratorType type, |
int next_result_pos = kNoSourcePosition); |
+ |
Block* RewriteForVarInLegacy(const ForInfo& for_info); |
void DesugarBindingInForEachStatement(ForInfo* for_info, Block** body_block, |
Expression** each_variable, bool* ok); |
@@ -636,16 +637,18 @@ class V8_EXPORT_PRIVATE Parser : public NON_EXPORTED_BASE(ParserBase<Parser>) { |
void FinalizeIteratorUse(Scope* use_scope, Variable* completion, |
Expression* condition, Variable* iter, |
- Block* iterator_use, Block* result); |
+ Block* iterator_use, Block* result, |
+ IteratorType type); |
Statement* FinalizeForOfStatement(ForOfStatement* loop, Variable* completion, |
- int pos); |
+ IteratorType type, int pos); |
void BuildIteratorClose(ZoneList<Statement*>* statements, Variable* iterator, |
Variable* input, Variable* output); |
void BuildIteratorCloseForCompletion(Scope* scope, |
ZoneList<Statement*>* statements, |
Variable* iterator, |
- Expression* completion); |
+ Expression* completion, |
+ IteratorType type); |
Statement* CheckCallable(Variable* var, Expression* error, int pos); |
V8_INLINE Expression* RewriteAwaitExpression(Expression* value, int pos); |