diff options
Diffstat (limited to 'cli/lsp/urls.rs')
-rw-r--r-- | cli/lsp/urls.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/lsp/urls.rs b/cli/lsp/urls.rs index 781fc8035..e30a3c5d6 100644 --- a/cli/lsp/urls.rs +++ b/cli/lsp/urls.rs @@ -16,7 +16,7 @@ use std::sync::Arc; /// Used in situations where a default URL needs to be used where otherwise a /// panic is undesired. -pub(crate) static INVALID_SPECIFIER: Lazy<ModuleSpecifier> = +pub static INVALID_SPECIFIER: Lazy<ModuleSpecifier> = Lazy::new(|| ModuleSpecifier::parse("deno://invalid").unwrap()); /// Matches the `encodeURIComponent()` encoding from JavaScript, which matches |