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

Unified Diff: src/parsing/preparser.h

Issue 2703563002: [ESNext] Implement DynamicImportCall (Closed)
Patch Set: use function_closure Created 3 years, 9 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 2a8c349fb35aa9b761999974922fc3aa00970269..62cd398caf571cd298c9037922e0b1828dcbf21f 100644
--- a/src/parsing/preparser.h
+++ b/src/parsing/preparser.h
@@ -775,6 +775,11 @@ class PreParserFactory {
return PreParserExpression::Default();
}
+ PreParserExpression NewImportCallExpression(PreParserExpression args,
+ int pos) {
+ return PreParserExpression::Default();
+ }
+
// Return the object itself as AstVisitor and implement the needed
// dummy method right in this class.
PreParserFactory* visitor() { return this; }

Powered by Google App Engine
This is Rietveld 408576698