summaryrefslogtreecommitdiff
path: root/core/extensions.rs
diff options
context:
space:
mode:
authorNayeem Rahman <nayeemrmn99@gmail.com>2023-05-28 19:44:41 +0100
committerGitHub <noreply@github.com>2023-05-28 12:44:41 -0600
commitb6a3f8f722db89bc136e91da598f581c5838d38e (patch)
tree668542949383621fab493343cc2ddf8a4928c649 /core/extensions.rs
parentbb0676d3e23dfd7fe27f9932b955694d51438486 (diff)
refactor(core): remove ext: modules from the module map (#19040)
Rather than disallowing `ext:` resolution, clear the module map after initializing extensions so extension modules are anonymized. This operation is explicitly called in `deno_runtime`. Re-inject `node:` specifiers into the module map after doing this. Fixes #17717.
Diffstat (limited to 'core/extensions.rs')
-rw-r--r--core/extensions.rs10
1 files changed, 0 insertions, 10 deletions
diff --git a/core/extensions.rs b/core/extensions.rs
index ba151da3d..a8b52eb3b 100644
--- a/core/extensions.rs
+++ b/core/extensions.rs
@@ -471,16 +471,6 @@ impl Extension {
pub fn disable(self) -> Self {
self.enabled(false)
}
-
- pub(crate) fn find_esm(
- &self,
- specifier: &str,
- ) -> Option<&ExtensionFileSource> {
- self
- .get_esm_sources()?
- .iter()
- .find(|s| s.specifier == specifier)
- }
}
// Provides a convenient builder pattern to declare Extensions