Unify mem_access api for js/sys

This commit is contained in:
Syrus Akbary
2023-02-09 17:59:30 -08:00
parent 039098ce2c
commit 5a829bc363
9 changed files with 13 additions and 407 deletions

View File

@@ -431,6 +431,7 @@ compile_error!(
mod engine;
mod function_env;
mod mem_access;
mod module;
mod store;
@@ -448,6 +449,7 @@ pub use js::*;
pub use engine::{AsEngineRef, Engine};
pub use function_env::{FunctionEnv, FunctionEnvMut};
pub use mem_access::{MemoryAccessError, WasmRef, WasmSlice, WasmSliceIter};
pub use module::{IoCompileError, Module};
pub use store::{OnCalledHandler, Store, StoreId};
#[cfg(feature = "sys")]