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

Unified Diff: src/crankshaft/hydrogen.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/hydrogen.cc
diff --git a/src/crankshaft/hydrogen.cc b/src/crankshaft/hydrogen.cc
index f0caf1bd8ec0bac02c20d7426d45a58dab89806b..1718eee5675293a7fa967f7c85e1915d37680153 100644
--- a/src/crankshaft/hydrogen.cc
+++ b/src/crankshaft/hydrogen.cc
@@ -11536,6 +11536,11 @@ void HOptimizedGraphBuilder::VisitGetIterator(GetIterator* expr) {
UNREACHABLE();
}
+void HOptimizedGraphBuilder::VisitImportCallExpression(
+ ImportCallExpression* expr) {
+ UNREACHABLE();
+}
+
HValue* HOptimizedGraphBuilder::AddThisFunction() {
return AddInstruction(BuildThisFunction());
}

Powered by Google App Engine
This is Rietveld 408576698