diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2023-12-07 15:59:13 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-07 15:59:13 -0500 |
commit | 78566753c81a26dc1855d8187c8192ffb1ba64e2 (patch) | |
tree | 73500bbd29baf164312f5bce58d880300a67a52a /cli/lsp/language_server.rs | |
parent | 3f96e5a29a88afafcef0f17458b2800b2db316ee (diff) |
feat: add suggestions to module not found error messages for file urls (#21498)
Diffstat (limited to 'cli/lsp/language_server.rs')
-rw-r--r-- | cli/lsp/language_server.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cli/lsp/language_server.rs b/cli/lsp/language_server.rs index 92173b8ad..bc8a10235 100644 --- a/cli/lsp/language_server.rs +++ b/cli/lsp/language_server.rs @@ -263,6 +263,7 @@ impl LanguageServer { .await?; graph_util::graph_valid( &graph, + factory.fs(), &roots, graph_util::GraphValidOptions { is_vendoring: false, |