kamo 0.9.4

A library to assist in the creation of an interpreter or compiler and its associated runtime.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub mod code;
pub use code::Code;

mod cause;
pub use cause::Cause;

mod context;
pub use context::*;

#[allow(clippy::module_inception)]
mod error;
pub use error::*;