(univ_idx: u64)
| 56 | /// Expression in the Ixon format. |
| 57 | /// |
| 58 | /// This is the alpha-invariant representation of Lean expressions. |
| 59 | /// Names are stripped, binder info is stored in metadata. |
| 60 | #[derive(Clone, Debug, PartialEq, Eq, Hash)] |
| 61 | pub enum Expr { |
| 62 | /// Sort/Type at a universe level (index into Constant.univs table) |
| 63 | Sort(u64), |
no outgoing calls
no test coverage detected