aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_ide_db/src/change.rs
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2020-03-06 23:18:28 +0000
committerGitHub <[email protected]>2020-03-06 23:18:28 +0000
commit48bb1c51721b7736b6d6f2e5cb82126c91934433 (patch)
tree464e625dd0ca6a888800a89dbb188a480e17ec92 /crates/ra_ide_db/src/change.rs
parentd4cea98bc342b0aa2603106a155722dcbe5534e1 (diff)
parent9abf0d9659d0d48036c4172e29fe33770134dd61 (diff)
Merge #3504
3504: Normalize waiting queries names r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
Diffstat (limited to 'crates/ra_ide_db/src/change.rs')
-rw-r--r--crates/ra_ide_db/src/change.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/crates/ra_ide_db/src/change.rs b/crates/ra_ide_db/src/change.rs
index de5c6eb8f..8b5be9d21 100644
--- a/crates/ra_ide_db/src/change.rs
+++ b/crates/ra_ide_db/src/change.rs
@@ -279,7 +279,7 @@ impl RootDatabase {
279 self.query(hir::db::BodyWithSourceMapQuery).sweep(sweep); 279 self.query(hir::db::BodyWithSourceMapQuery).sweep(sweep);
280 280
281 self.query(hir::db::ExprScopesQuery).sweep(sweep); 281 self.query(hir::db::ExprScopesQuery).sweep(sweep);
282 self.query(hir::db::DoInferQuery).sweep(sweep); 282 self.query(hir::db::InferQueryQuery).sweep(sweep);
283 self.query(hir::db::BodyQuery).sweep(sweep); 283 self.query(hir::db::BodyQuery).sweep(sweep);
284 } 284 }
285 285
@@ -318,7 +318,7 @@ impl RootDatabase {
318 318
319 // DefDatabase 319 // DefDatabase
320 hir::db::RawItemsQuery 320 hir::db::RawItemsQuery
321 hir::db::ComputeCrateDefMapQuery 321 hir::db::CrateDefMapQueryQuery
322 hir::db::StructDataQuery 322 hir::db::StructDataQuery
323 hir::db::UnionDataQuery 323 hir::db::UnionDataQuery
324 hir::db::EnumDataQuery 324 hir::db::EnumDataQuery
@@ -350,7 +350,7 @@ impl RootDatabase {
350 hir::db::InternImplQuery 350 hir::db::InternImplQuery
351 351
352 // HirDatabase 352 // HirDatabase
353 hir::db::DoInferQuery 353 hir::db::InferQueryQuery
354 hir::db::TyQuery 354 hir::db::TyQuery
355 hir::db::ValueTyQuery 355 hir::db::ValueTyQuery
356 hir::db::ImplSelfTyQuery 356 hir::db::ImplSelfTyQuery