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-07-16 09:02:39 +0100
committerGitHub <[email protected]>2020-07-16 09:02:39 +0100
commit6a74a917133a98aac2a35df537b7112279dd7d71 (patch)
tree103618bb65397a0051a92b5fe00329e791ef1803 /crates/ra_ide_db/src/change.rs
parent6824cf4f8a94dc9d0bd049efcf99e18651c71831 (diff)
parent20770044631fd0c21caa12f9bc87489ea6c848ee (diff)
Merge #5401
5401: Implement Chalk closure support r=matklad a=flodiebold This makes use of Chalk's closure support, which means we can get rid of our last built-in impls and a bunch of other surrounding stuff. Co-authored-by: Florian Diebold <[email protected]>
Diffstat (limited to 'crates/ra_ide_db/src/change.rs')
-rw-r--r--crates/ra_ide_db/src/change.rs3
1 files changed, 0 insertions, 3 deletions
diff --git a/crates/ra_ide_db/src/change.rs b/crates/ra_ide_db/src/change.rs
index d1a255dcf..a1bb3043b 100644
--- a/crates/ra_ide_db/src/change.rs
+++ b/crates/ra_ide_db/src/change.rs
@@ -279,10 +279,7 @@ impl RootDatabase {
279 hir::db::InternImplQuery 279 hir::db::InternImplQuery
280 280
281 // HirDatabase 281 // HirDatabase
282 hir::db::InternTypeCtorQuery
283 hir::db::InternTypeParamIdQuery 282 hir::db::InternTypeParamIdQuery
284 hir::db::InternChalkImplQuery
285 hir::db::InternAssocTyValueQuery
286 ]; 283 ];
287 284
288 acc.sort_by_key(|it| std::cmp::Reverse(it.1)); 285 acc.sort_by_key(|it| std::cmp::Reverse(it.1));