File tree 1 file changed +6
-5
lines changed
compiler/rustc_middle/src
1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change 4
4
//! has their own README with further details).
5
5
//!
6
6
//! - **HIR.** The "high-level (H) intermediate representation (IR)" is
7
- //! defined in the `hir` module.
7
+ //! defined in the [ `hir`] module.
8
8
//! - **MIR.** The "mid-level (M) intermediate representation (IR)" is
9
- //! defined in the `mir` module. This module contains only the
9
+ //! defined in the [ `mir`] module. This module contains only the
10
10
//! *definition* of the MIR; the passes that transform and operate
11
11
//! on MIR are found in `rustc_const_eval` crate.
12
12
//! - **Types.** The internal representation of types used in rustc is
13
- //! defined in the `ty` module. This includes the **type context**
14
- //! (or `tcx`), which is the central context during most of
15
- //! compilation, containing the interners and other things.
13
+ //! defined in the [`ty`] module. This includes the
14
+ //! [**type context**][ty::TyCtxt] (or `tcx`), which is the central
15
+ //! context during most of compilation, containing the interners and
16
+ //! other things.
16
17
//!
17
18
//! For more information about how rustc works, see the [rustc dev guide].
18
19
//!
You can’t perform that action at this time.
0 commit comments