|
31 | 31 | //! not. To lower anything wrapped in a `Binder`, we first deeply find any bound
|
32 | 32 | //! variables from the current `Binder`.
|
33 | 33 |
|
| 34 | +use rustc_ast::ast; |
34 | 35 | use rustc_middle::traits::{ChalkEnvironmentAndGoal, ChalkRustInterner as RustInterner};
|
35 | 36 | use rustc_middle::ty::fold::TypeFolder;
|
36 | 37 | use rustc_middle::ty::subst::{GenericArg, GenericArgKind, SubstsRef};
|
@@ -278,26 +279,14 @@ impl<'tcx> LowerInto<'tcx, chalk_ir::Ty<RustInterner<'tcx>>> for Ty<'tcx> {
|
278 | 279 | }
|
279 | 280 | ty::Slice(ty) => chalk_ir::TyKind::Slice(ty.lower_into(interner)),
|
280 | 281 |
|
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 | + ), |
301 | 290 | ty::FnDef(def_id, substs) => {
|
302 | 291 | chalk_ir::TyKind::FnDef(chalk_ir::FnDefId(def_id), substs.lower_into(interner))
|
303 | 292 | }
|
@@ -356,7 +345,6 @@ impl<'tcx> LowerInto<'tcx, chalk_ir::Ty<RustInterner<'tcx>>> for Ty<'tcx> {
|
356 | 345 | impl<'tcx> LowerInto<'tcx, Ty<'tcx>> for &chalk_ir::Ty<RustInterner<'tcx>> {
|
357 | 346 | fn lower_into(self, interner: &RustInterner<'tcx>) -> Ty<'tcx> {
|
358 | 347 | use chalk_ir::TyKind;
|
359 |
| - use rustc_ast::ast; |
360 | 348 |
|
361 | 349 | let kind = match self.kind(interner) {
|
362 | 350 | TyKind::Adt(struct_id, substitution) => {
|
@@ -402,18 +390,12 @@ impl<'tcx> LowerInto<'tcx, Ty<'tcx>> for &chalk_ir::Ty<RustInterner<'tcx>> {
|
402 | 390 | TyKind::Slice(ty) => ty::Slice(ty.lower_into(interner)),
|
403 | 391 | TyKind::Raw(mutbl, ty) => ty::RawPtr(ty::TypeAndMut {
|
404 | 392 | 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), |
409 | 394 | }),
|
410 | 395 | TyKind::Ref(mutbl, lifetime, ty) => ty::Ref(
|
411 | 396 | lifetime.lower_into(interner),
|
412 | 397 | 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), |
417 | 399 | ),
|
418 | 400 | TyKind::Str => ty::Str,
|
419 | 401 | TyKind::OpaqueType(opaque_ty, substitution) => {
|
@@ -767,6 +749,24 @@ impl<'tcx> LowerInto<'tcx, chalk_solve::rust_ir::TraitBound<RustInterner<'tcx>>>
|
767 | 749 | }
|
768 | 750 | }
|
769 | 751 |
|
| 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 | + |
770 | 770 | impl<'tcx> LowerInto<'tcx, chalk_solve::rust_ir::Polarity> for ty::ImplPolarity {
|
771 | 771 | fn lower_into(self, _interner: &RustInterner<'tcx>) -> chalk_solve::rust_ir::Polarity {
|
772 | 772 | match self {
|
|
0 commit comments