Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/hir/src/source_analyzer.rs')
| -rw-r--r-- | crates/hir/src/source_analyzer.rs | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/crates/hir/src/source_analyzer.rs b/crates/hir/src/source_analyzer.rs index b6ee5968fa..960b290e26 100644 --- a/crates/hir/src/source_analyzer.rs +++ b/crates/hir/src/source_analyzer.rs @@ -43,7 +43,6 @@ pub(crate) struct SourceAnalyzer { body: Option<Arc<Body>>, body_source_map: Option<Arc<BodySourceMap>>, infer: Option<Arc<InferenceResult>>, - scopes: Option<Arc<ExprScopes>>, } impl SourceAnalyzer { @@ -65,7 +64,6 @@ impl SourceAnalyzer { body: Some(body), body_source_map: Some(source_map), infer: Some(db.infer(def)), - scopes: Some(scopes), file_id: node.file_id, } } @@ -79,7 +77,6 @@ impl SourceAnalyzer { body: None, body_source_map: None, infer: None, - scopes: None, file_id: node.file_id, } } |