fix grumbles + added constructor logic

This commit is contained in:
fro
2017-10-26 15:49:55 +03:00
parent 85b7d2f430
commit b369ce903e
3 changed files with 40 additions and 25 deletions

View File

@ -4,6 +4,9 @@ extern crate byteorder;
#[macro_use] extern crate log;
#[macro_use] extern crate lazy_static;
pub static CREATE_SYMBOL: &'static str = "_create";
pub static CALL_SYMBOL: &'static str = "_call";
pub mod rules;
mod optimizer;
@ -22,3 +25,4 @@ pub use ext::externalize;
pub use pack::pack_instance;
pub use nondeterminism_check::is_deterministic;
pub use runtime_type::inject_runtime_type;