From 7a8bb3b611f02b272b1c19b6f3d8a85b099ca317 Mon Sep 17 00:00:00 2001 From: Nayeem Rahman Date: Thu, 4 May 2023 01:44:59 +0100 Subject: fix(core): allow esm extensions not included in snapshot (#18980) Fixes #18979. This changes the predicate for allowing `ext:` specifier resolution from `snapshot_loaded_and_not_snapshotting` to `ext_resolution_allowed` which is only set to true during the extension module loading phase. Module loaders as used in core are now declared as `ExtModuleLoader` rather than `dyn ModuleLoader`. --- runtime/examples/hello_runtime_bootstrap.js | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 runtime/examples/hello_runtime_bootstrap.js (limited to 'runtime/examples/hello_runtime_bootstrap.js') diff --git a/runtime/examples/hello_runtime_bootstrap.js b/runtime/examples/hello_runtime_bootstrap.js new file mode 100644 index 000000000..759dde939 --- /dev/null +++ b/runtime/examples/hello_runtime_bootstrap.js @@ -0,0 +1,5 @@ +// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. +function hello() { + console.log("Hello from extension!"); +} +globalThis.Extension = { hello }; -- cgit v1.2.3