Unified Value into js/sys

This commit is contained in:
Syrus Akbary
2023-02-10 16:20:47 -08:00
parent c9e18e8d57
commit a5e631c176
13 changed files with 29 additions and 474 deletions

View File

@@ -437,6 +437,7 @@ mod module;
mod native_type;
mod ptr;
mod store;
mod value;
#[cfg(feature = "sys")]
mod sys;
@@ -460,6 +461,7 @@ pub use ptr::{Memory32, Memory64, MemorySize, WasmPtr, WasmPtr64};
pub use store::{AsStoreMut, AsStoreRef, OnCalledHandler, Store, StoreId, StoreMut, StoreRef};
#[cfg(feature = "sys")]
pub use store::{TrapHandlerFn, Tunables};
pub use value::Value;
mod into_bytes;
pub use into_bytes::IntoBytes;