Chromium Code Reviews

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

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.
Jump to:
View side-by-side diff with in-line comments
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