env module stub

This commit is contained in:
Svyatoslav Nikolsky
2017-05-04 11:25:25 +03:00
parent 15555aba2b
commit b4215aed3c
7 changed files with 147 additions and 60 deletions

View File

@ -48,6 +48,7 @@ impl Into<String> for Error {
}
}
mod env;
mod imports;
mod memory;
mod module;
@ -61,6 +62,6 @@ mod variable;
#[cfg(test)]
mod tests;
pub use self::module::ModuleInstance;
pub use self::module::{ModuleInstance, ModuleInstanceInterface};
pub use self::program::ProgramInstance;
pub use self::value::RuntimeValue;