Skip to content

Commit 4d60a80

Browse files
committed
Address review comment and update chalk to 0.36.0
1 parent acb6a06 commit 4d60a80

File tree

4 files changed

+41
-41
lines changed

4 files changed

+41
-41
lines changed

Cargo.lock

+8-8
Original file line numberDiff line numberDiff line change
@@ -460,9 +460,9 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
460460

461461
[[package]]
462462
name = "chalk-derive"
463-
version = "0.35.0"
463+
version = "0.36.0"
464464
source = "registry+https://github.com/rust-lang/crates.io-index"
465-
checksum = "bc6d2895e93c0939074a7a0f525fd549b49da8362dea3def555e4aab95ff64cd"
465+
checksum = "9f88ce4deae1dace71e49b7611cfae2d5489de3530d6daba5758043c47ac3a10"
466466
dependencies = [
467467
"proc-macro2",
468468
"quote",
@@ -472,9 +472,9 @@ dependencies = [
472472

473473
[[package]]
474474
name = "chalk-engine"
475-
version = "0.35.0"
475+
version = "0.36.0"
476476
source = "registry+https://github.com/rust-lang/crates.io-index"
477-
checksum = "93ed23c35d243ccc2caeae7ba4660a091e74b11c40e441d7849f07d8e71b5cb8"
477+
checksum = "0e34c9b1b10616782143d7f49490f91ae94afaf2202de3ab0b2835e78b4f0ccc"
478478
dependencies = [
479479
"chalk-derive",
480480
"chalk-ir",
@@ -485,19 +485,19 @@ dependencies = [
485485

486486
[[package]]
487487
name = "chalk-ir"
488-
version = "0.35.0"
488+
version = "0.36.0"
489489
source = "registry+https://github.com/rust-lang/crates.io-index"
490-
checksum = "40d7f6140cccc889117e7372b6f9cfbc8103c86a1a0269ff6ab868f20ab414d6"
490+
checksum = "63362c629c2014ab639b04029070763fb8224df136d1363d30e9ece4c8877da3"
491491
dependencies = [
492492
"chalk-derive",
493493
"lazy_static",
494494
]
495495

496496
[[package]]
497497
name = "chalk-solve"
498-
version = "0.35.0"
498+
version = "0.36.0"
499499
source = "registry+https://github.com/rust-lang/crates.io-index"
500-
checksum = "fa65b636e64cbfcba31f053da97c32f3e15f2670b3cc620b84231a1656d754ec"
500+
checksum = "cac338a67af52a7f50bb2f8232e730a3518ce432dbe303246acfe525ddd838c7"
501501
dependencies = [
502502
"chalk-derive",
503503
"chalk-ir",

compiler/rustc_middle/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ rustc_index = { path = "../rustc_index" }
2626
rustc_serialize = { path = "../rustc_serialize" }
2727
rustc_ast = { path = "../rustc_ast" }
2828
rustc_span = { path = "../rustc_span" }
29-
chalk-ir = "0.35.0"
29+
chalk-ir = "0.36.0"
3030
smallvec = { version = "1.0", features = ["union", "may_dangle"] }
3131
measureme = "9.0.0"
3232
rustc_session = { path = "../rustc_session" }

compiler/rustc_traits/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ rustc_hir = { path = "../rustc_hir" }
1212
rustc_index = { path = "../rustc_index" }
1313
rustc_ast = { path = "../rustc_ast" }
1414
rustc_span = { path = "../rustc_span" }
15-
chalk-ir = "0.35.0"
16-
chalk-solve = "0.35.0"
17-
chalk-engine = "0.35.0"
15+
chalk-ir = "0.36.0"
16+
chalk-solve = "0.36.0"
17+
chalk-engine = "0.36.0"
1818
smallvec = { version = "1.0", features = ["union", "may_dangle"] }
1919
rustc_infer = { path = "../rustc_infer" }
2020
rustc_trait_selection = { path = "../rustc_trait_selection" }

compiler/rustc_traits/src/chalk/lowering.rs

+29-29
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
//! not. To lower anything wrapped in a `Binder`, we first deeply find any bound
3232
//! variables from the current `Binder`.
3333
34+
use rustc_ast::ast;
3435
use rustc_middle::traits::{ChalkEnvironmentAndGoal, ChalkRustInterner as RustInterner};
3536
use rustc_middle::ty::fold::TypeFolder;
3637
use rustc_middle::ty::subst::{GenericArg, GenericArgKind, SubstsRef};
@@ -278,26 +279,14 @@ impl<'tcx> LowerInto<'tcx, chalk_ir::Ty<RustInterner<'tcx>>> for Ty<'tcx> {
278279
}
279280
ty::Slice(ty) => chalk_ir::TyKind::Slice(ty.lower_into(interner)),
280281

281-
ty::RawPtr(ptr) => match ptr.mutbl {
282-
ast::Mutability::Mut => {
283-
chalk_ir::TyKind::Raw(chalk_ir::Mutability::Mut, ptr.ty.lower_into(interner))
284-
}
285-
ast::Mutability::Not => {
286-
chalk_ir::TyKind::Raw(chalk_ir::Mutability::Not, ptr.ty.lower_into(interner))
287-
}
288-
},
289-
ty::Ref(region, ty, mutability) => match mutability {
290-
ast::Mutability::Mut => chalk_ir::TyKind::Ref(
291-
chalk_ir::Mutability::Mut,
292-
region.lower_into(interner),
293-
ty.lower_into(interner),
294-
),
295-
ast::Mutability::Not => chalk_ir::TyKind::Ref(
296-
chalk_ir::Mutability::Not,
297-
region.lower_into(interner),
298-
ty.lower_into(interner),
299-
),
300-
},
282+
ty::RawPtr(ptr) => {
283+
chalk_ir::TyKind::Raw(ptr.mutbl.lower_into(interner), ptr.ty.lower_into(interner))
284+
}
285+
ty::Ref(region, ty, mutability) => chalk_ir::TyKind::Ref(
286+
mutability.lower_into(interner),
287+
region.lower_into(interner),
288+
ty.lower_into(interner),
289+
),
301290
ty::FnDef(def_id, substs) => {
302291
chalk_ir::TyKind::FnDef(chalk_ir::FnDefId(def_id), substs.lower_into(interner))
303292
}
@@ -356,7 +345,6 @@ impl<'tcx> LowerInto<'tcx, chalk_ir::Ty<RustInterner<'tcx>>> for Ty<'tcx> {
356345
impl<'tcx> LowerInto<'tcx, Ty<'tcx>> for &chalk_ir::Ty<RustInterner<'tcx>> {
357346
fn lower_into(self, interner: &RustInterner<'tcx>) -> Ty<'tcx> {
358347
use chalk_ir::TyKind;
359-
use rustc_ast::ast;
360348

361349
let kind = match self.kind(interner) {
362350
TyKind::Adt(struct_id, substitution) => {
@@ -402,18 +390,12 @@ impl<'tcx> LowerInto<'tcx, Ty<'tcx>> for &chalk_ir::Ty<RustInterner<'tcx>> {
402390
TyKind::Slice(ty) => ty::Slice(ty.lower_into(interner)),
403391
TyKind::Raw(mutbl, ty) => ty::RawPtr(ty::TypeAndMut {
404392
ty: ty.lower_into(interner),
405-
mutbl: match mutbl {
406-
chalk_ir::Mutability::Mut => ast::Mutability::Mut,
407-
chalk_ir::Mutability::Not => ast::Mutability::Not,
408-
},
393+
mutbl: mutbl.lower_into(interner),
409394
}),
410395
TyKind::Ref(mutbl, lifetime, ty) => ty::Ref(
411396
lifetime.lower_into(interner),
412397
ty.lower_into(interner),
413-
match mutbl {
414-
chalk_ir::Mutability::Mut => ast::Mutability::Mut,
415-
chalk_ir::Mutability::Not => ast::Mutability::Not,
416-
},
398+
mutbl.lower_into(interner),
417399
),
418400
TyKind::Str => ty::Str,
419401
TyKind::OpaqueType(opaque_ty, substitution) => {
@@ -767,6 +749,24 @@ impl<'tcx> LowerInto<'tcx, chalk_solve::rust_ir::TraitBound<RustInterner<'tcx>>>
767749
}
768750
}
769751

752+
impl<'tcx> LowerInto<'tcx, chalk_ir::Mutability> for ast::Mutability {
753+
fn lower_into(self, _interner: &RustInterner<'tcx>) -> chalk_ir::Mutability {
754+
match self {
755+
rustc_ast::Mutability::Mut => chalk_ir::Mutability::Mut,
756+
rustc_ast::Mutability::Not => chalk_ir::Mutability::Not,
757+
}
758+
}
759+
}
760+
761+
impl<'tcx> LowerInto<'tcx, ast::Mutability> for chalk_ir::Mutability {
762+
fn lower_into(self, _interner: &RustInterner<'tcx>) -> ast::Mutability {
763+
match self {
764+
chalk_ir::Mutability::Mut => ast::Mutability::Mut,
765+
chalk_ir::Mutability::Not => ast::Mutability::Not,
766+
}
767+
}
768+
}
769+
770770
impl<'tcx> LowerInto<'tcx, chalk_solve::rust_ir::Polarity> for ty::ImplPolarity {
771771
fn lower_into(self, _interner: &RustInterner<'tcx>) -> chalk_solve::rust_ir::Polarity {
772772
match self {

0 commit comments

Comments
 (0)