env → emscripten

This commit is contained in:
Sergey Pepyakin
2017-11-27 15:37:39 +03:00
parent a039fb5d08
commit 0482373afc
3 changed files with 14 additions and 15 deletions

View File

@ -120,7 +120,7 @@ impl<U> From<U> for Error where U: UserError + Sized {
}
}
mod env;
mod emscripten;
mod env_native;
mod imports;
mod memory;
@ -144,4 +144,4 @@ pub use self::program::ProgramInstance;
pub use self::value::RuntimeValue;
pub use self::variable::{VariableInstance, VariableType, ExternalVariableValue};
pub use self::env_native::{env_native_module, UserDefinedElements, UserFunctionExecutor, UserFunctionDescriptor};
pub use self::env::EnvParams;
pub use self::emscripten::EnvParams;