mrubyedge 1.1.12

mruby/edge is yet another mruby that is specialized for running on WASM
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Yet Another mruby (yamrb) runtime layer.
//! Provides value representation, opcode tables, helpers, and the VM itself
//! so mruby bytecode can execute inside Rust.
pub mod helpers;
pub mod op;
pub mod optable;
pub mod shared_memory;
pub mod value;
pub mod vm;

pub mod prelude;