Re-exports§
pub use self::rustc::*;
Modules§
- rustc 🔒
Structs§
Enums§
- The subset of Expr that corresponds to constants.
Type Aliases§
- Rustc has different representation for constants: one for MIR (
rustc_middle::mir::Const
), one for the type system (rustc_middle::ty::ConstKind
). For simplicity hax maps those two construct to one sameConstantExpr
type.