You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/doc/rustc-dev-guide/src/appendix/glossary.md
-1
Original file line number
Diff line number
Diff line change
@@ -31,7 +31,6 @@ Term | Meaning
31
31
<spanid="generics">generics</span> | The list of generic parameters defined on an item. There are three kinds of generic parameters: Type, lifetime and const parameters.
32
32
<spanid="hir">HIR</span> | The _high-level [IR](#ir)_, created by lowering and desugaring the AST. ([see more](../hir.md))
33
33
<spanid="hir-id">`HirId`</span> | Identifies a particular node in the HIR by combining a def-id with an "intra-definition offset". See [the HIR chapter for more](../hir.md#identifiers-in-the-hir).
34
-
<spanid="hir-map">HIR map</span> | The HIR map, accessible via `tcx.hir()`, allows you to quickly navigate the HIR and convert between various forms of identifiers.
35
34
<spanid="ice">ICE</span> | Short for _internal compiler error_, this is when the compiler crashes.
36
35
<spanid="ich">ICH</span> | Short for _incremental compilation hash_, these are used as fingerprints for things such as HIR and crate metadata, to check if changes have been made. This is useful in incremental compilation to see if part of a crate has changed and should be recompiled.
37
36
<spanid="infcx">`infcx`</span> | The type inference context (`InferCtxt`). (see `rustc_middle::infer`)
0 commit comments