Merge branch 'master' into interpreter

This commit is contained in:
Svyatoslav Nikolsky
2017-05-10 13:09:37 +03:00
14 changed files with 282 additions and 15 deletions

View File

@ -7,7 +7,11 @@ mod misc;
mod import;
mod memory;
mod table;
mod export;
mod global;
pub use self::module::{module, from_module, ModuleBuilder};
pub use self::code::{signatures, signature, function};
pub use self::import::import;
pub use self::import::import;
pub use self::export::export;
pub use self::global::global;