2017-04-06 11:34:31 +03:00
|
|
|
//! Various builders to generate/alter wasm components
|
|
|
|
|
|
|
|
mod invoke;
|
|
|
|
mod module;
|
|
|
|
mod code;
|
2017-04-06 18:23:02 +03:00
|
|
|
mod misc;
|
2017-04-07 14:38:49 +03:00
|
|
|
mod import;
|
2017-04-28 13:34:58 +03:00
|
|
|
mod memory;
|
2017-05-02 08:01:57 +03:00
|
|
|
mod table;
|
2017-05-09 15:23:05 +03:00
|
|
|
mod export;
|
2017-05-09 17:34:36 +03:00
|
|
|
mod global;
|
2017-06-09 15:17:12 +03:00
|
|
|
mod data;
|
2017-04-06 11:34:31 +03:00
|
|
|
|
2017-04-10 13:11:34 +03:00
|
|
|
pub use self::module::{module, from_module, ModuleBuilder};
|
2017-04-10 13:58:14 +03:00
|
|
|
pub use self::code::{signatures, signature, function};
|
2017-05-09 15:23:05 +03:00
|
|
|
pub use self::import::import;
|
2017-05-09 17:34:36 +03:00
|
|
|
pub use self::export::export;
|
|
|
|
pub use self::global::global;
|