diff options
author | Florian Diebold <[email protected]> | 2019-11-01 19:01:21 +0000 |
---|---|---|
committer | Florian Diebold <[email protected]> | 2019-11-01 19:01:21 +0000 |
commit | 895238088417b292e35705e72182ff8cc3ab6f63 (patch) | |
tree | f560ab731b9da35902d3da720e19731b51ab62df /crates/ra_hir/src | |
parent | b29092ade31d7ff37532649dfbe1dc811edf3651 (diff) |
Change SourceAnalyzer method resoltion API
Diffstat (limited to 'crates/ra_hir/src')
-rw-r--r-- | crates/ra_hir/src/lib.rs | 3 | ||||
-rw-r--r-- | crates/ra_hir/src/source_binder.rs | 27 |
2 files changed, 26 insertions, 4 deletions
diff --git a/crates/ra_hir/src/lib.rs b/crates/ra_hir/src/lib.rs index 4cace432e..40f5562b4 100644 --- a/crates/ra_hir/src/lib.rs +++ b/crates/ra_hir/src/lib.rs | |||
@@ -76,8 +76,7 @@ pub use crate::{ | |||
76 | resolve::ScopeDef, | 76 | resolve::ScopeDef, |
77 | source_binder::{PathResolution, ScopeEntryWithSyntax, SourceAnalyzer}, | 77 | source_binder::{PathResolution, ScopeEntryWithSyntax, SourceAnalyzer}, |
78 | ty::{ | 78 | ty::{ |
79 | display::HirDisplay, method_resolution::LookupMode, ApplicationTy, CallableDef, Substs, | 79 | display::HirDisplay, ApplicationTy, CallableDef, Substs, TraitRef, Ty, TypeCtor, TypeWalk, |
80 | TraitRef, Ty, TypeCtor, TypeWalk, | ||
81 | }, | 80 | }, |
82 | }; | 81 | }; |
83 | 82 | ||
diff --git a/crates/ra_hir/src/source_binder.rs b/crates/ra_hir/src/source_binder.rs index 82e6eb852..a4ca59bba 100644 --- a/crates/ra_hir/src/source_binder.rs +++ b/crates/ra_hir/src/source_binder.rs | |||
@@ -327,7 +327,30 @@ impl SourceAnalyzer { | |||
327 | db: &impl HirDatabase, | 327 | db: &impl HirDatabase, |
328 | ty: Ty, | 328 | ty: Ty, |
329 | name: Option<&Name>, | 329 | name: Option<&Name>, |
330 | mode: method_resolution::LookupMode, | 330 | mut callback: impl FnMut(&Ty, Function) -> Option<T>, |
331 | ) -> Option<T> { | ||
332 | // There should be no inference vars in types passed here | ||
333 | // FIXME check that? | ||
334 | // FIXME replace Unknown by bound vars here | ||
335 | let canonical = crate::ty::Canonical { value: ty, num_vars: 0 }; | ||
336 | method_resolution::iterate_method_candidates( | ||
337 | &canonical, | ||
338 | db, | ||
339 | &self.resolver, | ||
340 | name, | ||
341 | method_resolution::LookupMode::MethodCall, | ||
342 | |ty, it| match it { | ||
343 | AssocItem::Function(f) => callback(ty, f), | ||
344 | _ => None, | ||
345 | }, | ||
346 | ) | ||
347 | } | ||
348 | |||
349 | pub fn iterate_path_candidates<T>( | ||
350 | &self, | ||
351 | db: &impl HirDatabase, | ||
352 | ty: Ty, | ||
353 | name: Option<&Name>, | ||
331 | callback: impl FnMut(&Ty, AssocItem) -> Option<T>, | 354 | callback: impl FnMut(&Ty, AssocItem) -> Option<T>, |
332 | ) -> Option<T> { | 355 | ) -> Option<T> { |
333 | // There should be no inference vars in types passed here | 356 | // There should be no inference vars in types passed here |
@@ -339,7 +362,7 @@ impl SourceAnalyzer { | |||
339 | db, | 362 | db, |
340 | &self.resolver, | 363 | &self.resolver, |
341 | name, | 364 | name, |
342 | mode, | 365 | method_resolution::LookupMode::Path, |
343 | callback, | 366 | callback, |
344 | ) | 367 | ) |
345 | } | 368 | } |