Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(963)

Unified Diff: src/parsing/preparser.h

Issue 2622833002: WIP [esnext] implement async iteration proposal (Closed)
Patch Set: Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/parsing/preparser.h
diff --git a/src/parsing/preparser.h b/src/parsing/preparser.h
index 037c2d0376b6580bee226958db9117b94e2b30e9..ca0a293cf214eb1865fcd743d8e7d17c4b6526d5 100644
--- a/src/parsing/preparser.h
+++ b/src/parsing/preparser.h
@@ -1282,6 +1282,13 @@ class PreParser : public ParserBase<PreParser> {
return stmt;
}
+ V8_INLINE PreParserStatement InitializeForAwaitOfStatement(
+ PreParserStatement stmt, PreParserExpression each,
+ PreParserExpression subject, PreParserStatement body,
+ int each_keyword_pos) {
+ return stmt;
+ }
+
V8_INLINE PreParserStatement RewriteForVarInLegacy(const ForInfo& for_info) {
return PreParserStatement::Null();
}

Powered by Google App Engine
This is Rietveld 408576698