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

Unified Diff: src/full-codegen/full-codegen.cc

Issue 2703563002: [ESNext] Implement DynamicImportCall (Closed)
Patch Set: fix build 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/full-codegen/full-codegen.cc
diff --git a/src/full-codegen/full-codegen.cc b/src/full-codegen/full-codegen.cc
index 3573c1f2f47b730e5067816c9af825b8d2d83e9f..8c2d45ae3917147ac43c29c00ed60597cf89e6eb 100644
--- a/src/full-codegen/full-codegen.cc
+++ b/src/full-codegen/full-codegen.cc
@@ -1438,6 +1438,10 @@ void FullCodeGenerator::VisitEmptyParentheses(EmptyParentheses* expr) {
void FullCodeGenerator::VisitGetIterator(GetIterator* expr) { UNREACHABLE(); }
+void FullCodeGenerator::VisitImportCallExpression(ImportCallExpression* expr) {
+ UNREACHABLE();
+}
+
void FullCodeGenerator::VisitRewritableExpression(RewritableExpression* expr) {
Visit(expr->expression());
}

Powered by Google App Engine
This is Rietveld 408576698