Rename module astconv to hir_ty_lowering

Split from the main renaming commit to make git generate a proper diff for ease of reviewing.
This commit is contained in:
León Orell Valerian Liehr
2024-02-11 11:09:25 +01:00
parent b79335dbed
commit 6d5a93949a
19 changed files with 26 additions and 22 deletions

View File

@@ -30,7 +30,7 @@ several major phases:
The type checker is defined into various submodules which are documented
independently:
- astconv: lowers type-system entities from the [HIR][hir] to the
- hir_ty_lowering: lowers type-system entities from the [HIR][hir] to the
[`rustc_middle::ty`] representation.
- collect: computes the types of each top-level item and enters them into
@@ -82,11 +82,11 @@ extern crate rustc_middle;
// These are used by Clippy.
pub mod check;
pub mod astconv;
pub mod autoderef;
mod bounds;
mod check_unused;
mod coherence;
pub mod hir_ty_lowering;
// FIXME: This module shouldn't be public.
pub mod collect;
mod constrained_generic_params;