collect types and bodies

This commit is contained in:
Aleksey Kladov 2019-06-01 22:47:20 +03:00
parent f7d3a87305
commit 011599df27

View File

@ -232,5 +232,9 @@ impl RootDatabase {
self.query(hir::db::RawItemsWithSourceMapQuery).sweep(sweep);
self.query(hir::db::ImplsInModuleWithSourceMapQuery).sweep(sweep);
self.query(hir::db::BodyWithSourceMapQuery).sweep(sweep);
self.query(hir::db::ExprScopesQuery).sweep(sweep);
self.query(hir::db::InferQuery).sweep(sweep);
self.query(hir::db::BodyHirQuery).sweep(sweep);
}
}