aboutsummaryrefslogtreecommitdiff
path: root/crates
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2019-06-01 20:47:20 +0100
committerAleksey Kladov <[email protected]>2019-06-01 20:47:20 +0100
commit011599df27ae39e8559b41a0db6ca4144ea54874 (patch)
treec25616fc139993de4b2cf3276c758a6850347f5b /crates
parentf7d3a873050fb8360b663ca281a805de8cf7f30d (diff)
collect types and bodies
Diffstat (limited to 'crates')
-rw-r--r--crates/ra_ide_api/src/change.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/crates/ra_ide_api/src/change.rs b/crates/ra_ide_api/src/change.rs
index 445a94aa8..42b4e4840 100644
--- a/crates/ra_ide_api/src/change.rs
+++ b/crates/ra_ide_api/src/change.rs
@@ -232,5 +232,9 @@ impl RootDatabase {
232 self.query(hir::db::RawItemsWithSourceMapQuery).sweep(sweep); 232 self.query(hir::db::RawItemsWithSourceMapQuery).sweep(sweep);
233 self.query(hir::db::ImplsInModuleWithSourceMapQuery).sweep(sweep); 233 self.query(hir::db::ImplsInModuleWithSourceMapQuery).sweep(sweep);
234 self.query(hir::db::BodyWithSourceMapQuery).sweep(sweep); 234 self.query(hir::db::BodyWithSourceMapQuery).sweep(sweep);
235
236 self.query(hir::db::ExprScopesQuery).sweep(sweep);
237 self.query(hir::db::InferQuery).sweep(sweep);
238 self.query(hir::db::BodyHirQuery).sweep(sweep);
235 } 239 }
236} 240}