mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 08:54:58 +00:00
LibJS+LibWeb: More bringing module loading closer to spec
In particular, this patch removes three host hooks on JS::VM in favor of the new JS-side module loading stuff.
This commit is contained in:
parent
07f567cd9f
commit
8b7d27b349
15 changed files with 234 additions and 319 deletions
|
@ -562,7 +562,7 @@ ErrorOr<int> serenity_main(Main::Arguments arguments)
|
|||
s_history_path = TRY(String::formatted("{}/.js-history", Core::StandardPaths::home_directory()));
|
||||
|
||||
g_vm = TRY(JS::VM::create());
|
||||
g_vm->enable_default_host_import_module_dynamically_hook();
|
||||
g_vm->set_dynamic_imports_allowed(true);
|
||||
|
||||
if (!disable_debug_printing) {
|
||||
// NOTE: These will print out both warnings when using something like Promise.reject().catch(...) -
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue