aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_hir/src/semantics.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/ra_hir/src/semantics.rs')
-rw-r--r--crates/ra_hir/src/semantics.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_hir/src/semantics.rs b/crates/ra_hir/src/semantics.rs
index 178d74be1..4a9cb7b3e 100644
--- a/crates/ra_hir/src/semantics.rs
+++ b/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. 26/// Primary API to get semantic information, like types, from syntax trees.
27pub struct Semantics<'db, DB> { 27pub struct Semantics<'db, DB> {
28 pub db: &'db DB, 28 pub db: &'db DB,
29 pub(crate) sb: RefCell<SourceBinder>, 29 sb: RefCell<SourceBinder>,
30 cache: RefCell<FxHashMap<SyntaxNode, HirFileId>>, 30 cache: RefCell<FxHashMap<SyntaxNode, HirFileId>>,
31} 31}
32 32