Move out GlobalInstance.

This commit is contained in:
Sergey Pepyakin
2017-12-13 18:19:42 +01:00
parent 5eaf2ca183
commit 075ed7d369
5 changed files with 39 additions and 32 deletions

View File

@ -140,6 +140,7 @@ mod value;
mod store;
mod host;
mod imports;
mod global;
#[cfg(test)]
mod tests;
@ -151,4 +152,5 @@ pub use self::program::ProgramInstance;
pub use self::value::RuntimeValue;
pub use self::host::{HostModule, HostModuleBuilder, Func1, AnyFunc, AsReturnVal, FromArg};
pub use self::imports::{ImportResolver, Imports};
pub use self::store::{FuncInstance, ModuleInstance, GlobalInstance};
pub use self::store::{FuncInstance, ModuleInstance};
pub use self::global::GlobalInstance;