diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2024-06-25 21:42:18 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-26 01:42:18 +0000 |
commit | eb283c43f5601df54b7086578daef9793a36a56f (patch) | |
tree | 8fcb8eb46a373f1d24e0e9b10420b2c5961239ef /cli/lsp | |
parent | 09cc473f3b3807d79a75eda3a744e4d9d7e34f3f (diff) |
refactor: bump deno_graph to 0.79 (#24337)
No fixes in this to my knowledge. Just an upgrade. The functionality
here will be used in a different PR.
Diffstat (limited to 'cli/lsp')
-rw-r--r-- | cli/lsp/diagnostics.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/lsp/diagnostics.rs b/cli/lsp/diagnostics.rs index f2a22e570..27983867a 100644 --- a/cli/lsp/diagnostics.rs +++ b/cli/lsp/diagnostics.rs @@ -1033,7 +1033,7 @@ impl DenoDiagnostic { "invalid-local-import" } ResolutionError::InvalidSpecifier { error, .. } => match error { - SpecifierError::ImportPrefixMissing(_, _) => { + SpecifierError::ImportPrefixMissing { .. } => { "import-prefix-missing" } SpecifierError::InvalidUrl(_) => "invalid-url", |