Introduce term search to rust-analyzer

This commit is contained in:
Tavo Annus 2023-12-11 17:04:20 +02:00
parent ddf105b646
commit bb3c7cff60
15 changed files with 2030 additions and 74 deletions

View file

@ -68,7 +68,7 @@ use crate::{
#[allow(unreachable_pub)]
pub use coerce::could_coerce;
#[allow(unreachable_pub)]
pub use unify::could_unify;
pub use unify::{could_unify, could_unify_deeply};
use cast::CastCheck;
pub(crate) use closure::{CaptureKind, CapturedItem, CapturedItemWithoutTy};