| Index: src/parsing/preparser.h
|
| diff --git a/src/parsing/preparser.h b/src/parsing/preparser.h
|
| index 02e915c15df62a5d8d6022b5ce1b65a23c0b84d1..2e822c9c159c003945612e49019abef81ad5c61a 100644
|
| --- a/src/parsing/preparser.h
|
| +++ b/src/parsing/preparser.h
|
| @@ -1307,6 +1307,14 @@ class PreParser : public ParserBase<PreParser> {
|
| return stmt;
|
| }
|
|
|
| + V8_INLINE PreParserStatement InitializeForOfStatement(
|
| + PreParserStatement stmt, PreParserExpression each,
|
| + PreParserExpression iterable, PreParserStatement body, bool finalize,
|
| + IteratorType type, int next_result_pos = kNoSourcePosition) {
|
| + MarkExpressionAsAssigned(each);
|
| + return stmt;
|
| + }
|
| +
|
| V8_INLINE PreParserStatement RewriteForVarInLegacy(const ForInfo& for_info) {
|
| return PreParserStatement::Null();
|
| }
|
|
|