Unified exports in js/sys

This commit is contained in:
Syrus Akbary
2023-02-10 16:29:28 -08:00
parent a5e631c176
commit 1e405d3e22
19 changed files with 16 additions and 387 deletions

View File

@@ -430,6 +430,7 @@ compile_error!(
);
mod engine;
mod exports;
mod extern_ref;
mod function_env;
mod mem_access;
@@ -452,6 +453,7 @@ mod js;
pub use js::*;
pub use engine::{AsEngineRef, Engine};
pub use exports::{ExportError, Exportable, Exports, ExportsIterator};
pub use extern_ref::ExternRef;
pub use function_env::{FunctionEnv, FunctionEnvMut};
pub use mem_access::{MemoryAccessError, WasmRef, WasmSlice, WasmSliceIter};