miden-assembly-syntax 0.29.2

Parsing and semantic analysis of the Miden Assembly language
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! The type system a MASM signature is written in.
//!
//! The types themselves come from [`midenc_hir_type`] and are re-exported here. On top of them,
//! [`signatures`] converts between the values a signature names and the felts the VM stack holds.

pub mod signatures;

pub use midenc_hir_type::*;

pub use self::signatures::{
    FeltCodec, MIDEN_CORE_TYPES, TypedError, TypedProcInfo, WitScalarCodec, WordCodec,
};