rename instance to module

This commit is contained in:
vms 2020-06-06 02:31:59 +03:00
parent 093e410bac
commit 8c845c9f37
9 changed files with 3 additions and 3 deletions

View File

@ -14,7 +14,7 @@
* limitations under the License. * limitations under the License.
*/ */
use super::instance::FCEModule; use super::module::FCEModule;
use super::*; use super::*;
use crate::WasmProcess; use crate::WasmProcess;
use crate::NodeFunction; use crate::NodeFunction;

View File

@ -15,7 +15,7 @@
*/ */
mod fce; mod fce;
mod instance; mod module;
mod config; mod config;
mod prepare; mod prepare;
mod errors; mod errors;
@ -23,4 +23,4 @@ mod errors;
pub use fce::FCE; pub use fce::FCE;
pub use config::FCEModuleConfig; pub use config::FCEModuleConfig;
pub use errors::FCEError; pub use errors::FCEError;
pub use instance::{IType, IValue}; pub use module::{IType, IValue};