Index: src/runtime/runtime-module.cc |
diff --git a/src/runtime/runtime-module.cc b/src/runtime/runtime-module.cc |
index f2a9761203677325f286290fd8c42c225593ebec..c73f0ae7838d751acb641207214acfe53432aeeb 100644 |
--- a/src/runtime/runtime-module.cc |
+++ b/src/runtime/runtime-module.cc |
@@ -9,6 +9,13 @@ |
namespace v8 { |
namespace internal { |
+RUNTIME_FUNCTION(Runtime_DynamicImportCall) { |
+ HandleScope scope(isolate); |
+ DCHECK_EQ(1, args.length()); |
+ // TODO(gsathya): Implement ImportCall. |
+ return isolate->heap()->undefined_value(); |
+} |
+ |
RUNTIME_FUNCTION(Runtime_GetModuleNamespace) { |
HandleScope scope(isolate); |
DCHECK_EQ(1, args.length()); |