Index: src/runtime/runtime-object.cc |
diff --git a/src/runtime/runtime-object.cc b/src/runtime/runtime-object.cc |
index a4d0429b2f63933c4be63f7d61d8930f16630785..4a72677825d0c5cf203effbd6d08335654d5c5e8 100644 |
--- a/src/runtime/runtime-object.cc |
+++ b/src/runtime/runtime-object.cc |
@@ -960,40 +960,6 @@ RUNTIME_FUNCTION(Runtime_CreateDataProperty) { |
return *value; |
} |
-RUNTIME_FUNCTION(Runtime_GetModuleNamespace) { |
- HandleScope scope(isolate); |
- DCHECK(args.length() == 1); |
- CONVERT_SMI_ARG_CHECKED(module_request, 0); |
- Handle<Module> module(isolate->context()->module()); |
- return *Module::GetModuleNamespace(module, module_request); |
-} |
- |
-RUNTIME_FUNCTION(Runtime_LoadModuleExport) { |
- HandleScope scope(isolate); |
- DCHECK(args.length() == 1); |
- CONVERT_ARG_HANDLE_CHECKED(String, name, 0); |
- Handle<Module> module(isolate->context()->module()); |
- return *Module::LoadExport(module, name); |
-} |
- |
-RUNTIME_FUNCTION(Runtime_LoadModuleImport) { |
- HandleScope scope(isolate); |
- DCHECK(args.length() == 2); |
- CONVERT_ARG_HANDLE_CHECKED(String, name, 0); |
- CONVERT_SMI_ARG_CHECKED(module_request, 1); |
- Handle<Module> module(isolate->context()->module()); |
- return *Module::LoadImport(module, name, module_request); |
-} |
- |
-RUNTIME_FUNCTION(Runtime_StoreModuleExport) { |
- HandleScope scope(isolate); |
- DCHECK(args.length() == 2); |
- CONVERT_ARG_HANDLE_CHECKED(String, name, 0); |
- CONVERT_ARG_HANDLE_CHECKED(Object, value, 1); |
- Handle<Module> module(isolate->context()->module()); |
- Module::StoreExport(module, name, value); |
- return isolate->heap()->undefined_value(); |
-} |
} // namespace internal |
} // namespace v8 |