| Index: src/parsing/preparser.h
|
| diff --git a/src/parsing/preparser.h b/src/parsing/preparser.h
|
| index db2edf7935ec1bd788b3c45aacd1a616b7071447..9d1e36b4d6afc19cb75b33b7bfdddc2424dd80b3 100644
|
| --- a/src/parsing/preparser.h
|
| +++ b/src/parsing/preparser.h
|
| @@ -1300,6 +1300,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();
|
| }
|
|
|