More work on reference types -- wip

This commit is contained in:
Mark McCaskey
2021-02-09 10:54:26 -08:00
parent 6cfcc92d52
commit 7b8c5b3554
22 changed files with 183 additions and 107 deletions

View File

@@ -315,8 +315,18 @@ pub use wasmer_engine::{
NamedResolverChain, Resolver, RuntimeError, SerializeError, Tunables,
};
pub use wasmer_types::{
Atomically, Bytes, ExportIndex, GlobalInit, LocalFunctionIndex, MemoryView, Pages, ValueType,
WASM_MAX_PAGES, WASM_MIN_PAGES, WASM_PAGE_SIZE,
Atomically,
Bytes,
ExportIndex,
GlobalInit,
LocalFunctionIndex,
MemoryView,
Pages,
VMExternRef, // TODO: review whether we want to export `VMExetrnRef` or not
ValueType,
WASM_MAX_PAGES,
WASM_MIN_PAGES,
WASM_PAGE_SIZE,
};
// TODO: should those be moved into wasmer::vm as well?