summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cli/lsp/registries.rs2
-rw-r--r--cli/tools/test.rs2
-rw-r--r--ext/node/resolution.rs2
3 files changed, 3 insertions, 3 deletions
diff --git a/cli/lsp/registries.rs b/cli/lsp/registries.rs
index d67068ec7..fb60c7626 100644
--- a/cli/lsp/registries.rs
+++ b/cli/lsp/registries.rs
@@ -988,7 +988,7 @@ impl ModuleRegistry {
.origins
.keys()
.filter_map(|k| {
- let mut origin = k.as_str().to_string();
+ let mut origin = k.to_string();
if origin.ends_with('/') {
origin.pop();
}
diff --git a/cli/tools/test.rs b/cli/tools/test.rs
index d0f3013b3..ae831b95b 100644
--- a/cli/tools/test.rs
+++ b/cli/tools/test.rs
@@ -832,7 +832,7 @@ fn extract_files_from_source_comments(
media_type: MediaType,
) -> Result<Vec<File>, AnyError> {
let parsed_source = deno_ast::parse_module(deno_ast::ParseParams {
- specifier: specifier.as_str().to_string(),
+ specifier: specifier.to_string(),
text_info: deno_ast::SourceTextInfo::new(source),
media_type,
capture_tokens: false,
diff --git a/ext/node/resolution.rs b/ext/node/resolution.rs
index ccd272741..950485a1d 100644
--- a/ext/node/resolution.rs
+++ b/ext/node/resolution.rs
@@ -291,7 +291,7 @@ fn throw_invalid_package_target(
subpath,
target,
internal,
- Some(referrer.as_str().to_string()),
+ Some(referrer.to_string()),
)
}