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

Unified Diff: src/crankshaft/typing.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/crankshaft/typing.cc
diff --git a/src/crankshaft/typing.cc b/src/crankshaft/typing.cc
index 9713e4fd6fabda36dfb91e636694b0a3627b5908..3e7cb71de5cc3e194cad61bf0306932a70a96cf7 100644
--- a/src/crankshaft/typing.cc
+++ b/src/crankshaft/typing.cc
@@ -757,6 +757,10 @@ void AstTyper::VisitEmptyParentheses(EmptyParentheses* expr) {
void AstTyper::VisitGetIterator(GetIterator* expr) { UNREACHABLE(); }
+void AstTyper::VisitImportCallExpression(ImportCallExpression* expr) {
+ UNREACHABLE();
+}
+
void AstTyper::VisitThisFunction(ThisFunction* expr) {}

Powered by Google App Engine
This is Rietveld 408576698