mirror of
https://github.com/denoland/deno.git
synced 2024-11-28 16:20:57 -05:00
7a8bb3b611
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`.
4 lines
142 B
JavaScript
4 lines
142 B
JavaScript
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
|
|
console.log("Hello world!");
|
|
console.log(Deno);
|
|
Extension.hello();
|