ashpaper-plus 0.5.1

Rust Inpterpreter for Esopo language AshPaper conceived by William Hicks
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#[cfg(feature = "jit")]
pub mod jit {
    use thiserror::Error;

    #[derive(Debug, Error)]
    pub enum JitError {
        #[error("cranelift_module error: {0}")]
        CraneliftModuleError(#[from] cranelift_module::ModuleError),
    }

    pub type JitResult<T> = ::std::result::Result<T, JitError>;
}