diff options
Diffstat (limited to 'crates/hir/src/lib.rs')
-rw-r--r-- | crates/hir/src/lib.rs | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/crates/hir/src/lib.rs b/crates/hir/src/lib.rs index a21a9da21..8804e63c5 100644 --- a/crates/hir/src/lib.rs +++ b/crates/hir/src/lib.rs | |||
@@ -73,6 +73,7 @@ use hir_ty::{ | |||
73 | }; | 73 | }; |
74 | use itertools::Itertools; | 74 | use itertools::Itertools; |
75 | use nameres::diagnostics::DefDiagnosticKind; | 75 | use nameres::diagnostics::DefDiagnosticKind; |
76 | use once_cell::unsync::Lazy; | ||
76 | use rustc_hash::FxHashSet; | 77 | use rustc_hash::FxHashSet; |
77 | use stdx::{format_to, impl_from}; | 78 | use stdx::{format_to, impl_from}; |
78 | use syntax::{ | 79 | use syntax::{ |
@@ -1044,7 +1045,7 @@ impl Function { | |||
1044 | } | 1045 | } |
1045 | 1046 | ||
1046 | let infer = db.infer(self.id.into()); | 1047 | let infer = db.infer(self.id.into()); |
1047 | let (_, source_map) = db.body_with_source_map(self.id.into()); | 1048 | let source_map = Lazy::new(|| db.body_with_source_map(self.id.into()).1); |
1048 | for d in &infer.diagnostics { | 1049 | for d in &infer.diagnostics { |
1049 | match d { | 1050 | match d { |
1050 | hir_ty::InferenceDiagnostic::NoSuchField { expr } => { | 1051 | hir_ty::InferenceDiagnostic::NoSuchField { expr } => { |
@@ -1061,13 +1062,13 @@ impl Function { | |||
1061 | } | 1062 | } |
1062 | 1063 | ||
1063 | for expr in hir_ty::diagnostics::missing_unsafe(db, self.id.into()) { | 1064 | for expr in hir_ty::diagnostics::missing_unsafe(db, self.id.into()) { |
1064 | match source_map.as_ref().expr_syntax(expr) { | 1065 | match source_map.expr_syntax(expr) { |
1065 | Ok(in_file) => { | 1066 | Ok(in_file) => { |
1066 | sink.push(MissingUnsafe { file: in_file.file_id, expr: in_file.value }) | 1067 | sink.push(MissingUnsafe { file: in_file.file_id, expr: in_file.value }) |
1067 | } | 1068 | } |
1068 | Err(SyntheticSyntax) => { | 1069 | Err(SyntheticSyntax) => { |
1069 | // FIXME: The `expr` was desugared, report or assert that | 1070 | // FIXME: The `expr` was desugared, report or assert that |
1070 | // this dosen't happen. | 1071 | // this doesn't happen. |
1071 | } | 1072 | } |
1072 | } | 1073 | } |
1073 | } | 1074 | } |