runtime type injection implemented #10

This commit is contained in:
fro
2017-09-25 20:14:46 +03:00
parent a6b6d75be0
commit 9be2a5bf31
5 changed files with 67 additions and 2 deletions

View File

@ -1,5 +1,6 @@
extern crate parity_wasm;
extern crate env_logger;
extern crate byteorder;
#[macro_use] extern crate log;
#[macro_use] extern crate lazy_static;
@ -12,6 +13,7 @@ mod logger;
mod ext;
mod pack;
mod nondeterminism_check;
mod runtime_type;
pub use optimizer::{optimize, Error as OptimizerError};
pub use gas::inject_gas_counter;
@ -19,3 +21,4 @@ pub use logger::init_log;
pub use ext::externalize;
pub use pack::pack_instance;
pub use nondeterminism_check::is_deterministic;
pub use runtime_type::inject_runtime_type;