refactor: move entry resolver to query crate (#944)

This commit is contained in:
Myriad-Dreamin 2024-12-04 13:13:26 +08:00 committed by GitHub
parent 356fc2daad
commit d5c07b1ae3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 223 additions and 214 deletions

View file

@ -18,6 +18,8 @@ mod upstream;
pub use analysis::{LocalContext, LocalContextGuard, LspWorldExt};
pub use upstream::{with_vm, CompletionFeat, PostfixSnippet};
mod entry;
pub use entry::*;
mod diagnostics;
pub use diagnostics::*;
mod code_action;