We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c692e07 + e7c82ea commit d2bf2adCopy full SHA for d2bf2ad
crates/ra_hir/src/lib.rs
@@ -28,8 +28,8 @@ macro_rules! impl_froms {
28
29
mod semantics;
30
pub mod db;
31
-pub mod source_analyzer;
32
-pub mod source_binder;
+mod source_analyzer;
+mod source_binder;
33
34
pub mod diagnostics;
35
crates/ra_hir/src/semantics.rs
@@ -26,7 +26,7 @@ use ra_prof::profile;
26
/// Primary API to get semantic information, like types, from syntax trees.
27
pub struct Semantics<'db, DB> {
pub db: &'db DB,
- pub(crate) sb: RefCell<SourceBinder>,
+ sb: RefCell<SourceBinder>,
cache: RefCell<FxHashMap<SyntaxNode, HirFileId>>,
}
0 commit comments