diff options
Diffstat (limited to 'crates/hir_def/src/body')
-rw-r--r-- | crates/hir_def/src/body/lower.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/hir_def/src/body/lower.rs b/crates/hir_def/src/body/lower.rs index e4fa7f9c9..75dc19c11 100644 --- a/crates/hir_def/src/body/lower.rs +++ b/crates/hir_def/src/body/lower.rs | |||
@@ -41,7 +41,7 @@ use crate::{ | |||
41 | use super::{diagnostics::BodyDiagnostic, ExprSource, PatSource}; | 41 | use super::{diagnostics::BodyDiagnostic, ExprSource, PatSource}; |
42 | 42 | ||
43 | pub struct LowerCtx<'a> { | 43 | pub struct LowerCtx<'a> { |
44 | db: &'a dyn DefDatabase, | 44 | pub db: &'a dyn DefDatabase, |
45 | hygiene: Hygiene, | 45 | hygiene: Hygiene, |
46 | file_id: Option<HirFileId>, | 46 | file_id: Option<HirFileId>, |
47 | source_ast_id_map: Option<Arc<AstIdMap>>, | 47 | source_ast_id_map: Option<Arc<AstIdMap>>, |
@@ -70,7 +70,7 @@ impl<'a> LowerCtx<'a> { | |||
70 | } | 70 | } |
71 | 71 | ||
72 | pub(crate) fn lower_path(&self, ast: ast::Path) -> Option<Path> { | 72 | pub(crate) fn lower_path(&self, ast: ast::Path) -> Option<Path> { |
73 | Path::from_src(self.db, ast, self) | 73 | Path::from_src(ast, self) |
74 | } | 74 | } |
75 | 75 | ||
76 | pub(crate) fn ast_id<N: AstNode>(&self, item: &N) -> Option<FileAstId<N>> { | 76 | pub(crate) fn ast_id<N: AstNode>(&self, item: &N) -> Option<FileAstId<N>> { |