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

Unified Diff: src/parsing/preparser.h

Issue 2672313003: [async await] fix async await desugaring
Patch Set: fmt Created 3 years, 10 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
« no previous file with comments | « src/parsing/parser-base.h ('k') | test/mjsunit/regress/regress-5896.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/parsing/preparser.h
diff --git a/src/parsing/preparser.h b/src/parsing/preparser.h
index 3c72fcca1c113c150d85e0bf01a64510383ba9cf..de5ce78b6a643384341cf982ad8914df18eafbb4 100644
--- a/src/parsing/preparser.h
+++ b/src/parsing/preparser.h
@@ -1372,6 +1372,11 @@ class PreParser : public ParserBase<PreParser> {
return PreParserStatement::Default();
}
+ V8_INLINE PreParserStatement
+ BuildRejectPromiseOnExceptionForParameters(PreParserStatement init_block) {
+ return PreParserStatement::Default();
+ }
+
V8_INLINE void InsertSloppyBlockFunctionVarBindings(DeclarationScope* scope) {
scope->HoistSloppyBlockFunctions(nullptr);
}
« no previous file with comments | « src/parsing/parser-base.h ('k') | test/mjsunit/regress/regress-5896.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698