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

Unified Diff: src/compiler/ast-graph-builder.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/compiler/ast-graph-builder.cc
diff --git a/src/compiler/ast-graph-builder.cc b/src/compiler/ast-graph-builder.cc
index 0fba963ab57faeec99d1f2be426ad21627a107d9..2b9de4d339182888c538da28d315a199260bb850 100644
--- a/src/compiler/ast-graph-builder.cc
+++ b/src/compiler/ast-graph-builder.cc
@@ -2042,6 +2042,11 @@ void AstGraphBuilder::VisitGetIterator(GetIterator* expr) {
UNREACHABLE();
}
+void AstGraphBuilder::VisitImportCallExpression(ImportCallExpression* expr) {
+ // ImportCallExpression is supported only by going through Ignition first.
+ UNREACHABLE();
+}
+
void AstGraphBuilder::VisitThisFunction(ThisFunction* expr) {
Node* value = GetFunctionClosure();
ast_context()->ProduceValue(expr, value);

Powered by Google App Engine
This is Rietveld 408576698