gabagool 0.1.0

a WASM interpreter
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![warn(clippy::nursery)]

pub use binary_grammar::ValueType;
pub use execution_grammar::Value;
pub use interpreter::*;
pub use parser::*;
pub use store::*;

pub(crate) mod binary_grammar;
pub(crate) mod execution_grammar;
mod interpreter;
pub mod leb128;
mod parser;
mod store;