aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_hir/src/lib.rs
diff options
context:
space:
mode:
authorFlorian Diebold <[email protected]>2019-10-31 20:21:48 +0000
committerFlorian Diebold <[email protected]>2019-11-01 18:57:08 +0000
commit79cb0a0dab5fd8e3e84cf4a3b927ec29d2b6e65c (patch)
tree88f2ebdf338d230f6019d56acb96bea0878f7248 /crates/ra_hir/src/lib.rs
parent5da941897d4ed092a219729d7980bd103907850a (diff)
Complete trait assoc items
Diffstat (limited to 'crates/ra_hir/src/lib.rs')
-rw-r--r--crates/ra_hir/src/lib.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/crates/ra_hir/src/lib.rs b/crates/ra_hir/src/lib.rs
index 40f5562b4..4cace432e 100644
--- a/crates/ra_hir/src/lib.rs
+++ b/crates/ra_hir/src/lib.rs
@@ -76,7 +76,8 @@ 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, ApplicationTy, CallableDef, Substs, TraitRef, Ty, TypeCtor, TypeWalk, 79 display::HirDisplay, method_resolution::LookupMode, ApplicationTy, CallableDef, Substs,
80 TraitRef, Ty, TypeCtor, TypeWalk,
80 }, 81 },
81}; 82};
82 83