Add basic API tests with reference types with dynamic functions

This commit is contained in:
Mark McCaskey
2021-02-17 08:11:07 -08:00
parent 7ee1e14254
commit 828d265428
4 changed files with 177 additions and 0 deletions

View File

@@ -255,6 +255,7 @@
mod env;
mod exports;
mod extern_ref;
mod externals;
mod import_object;
mod instance;
@@ -285,6 +286,7 @@ pub mod internals {
pub use crate::env::{HostEnvInitError, LazyInit, WasmerEnv};
pub use crate::exports::{ExportError, Exportable, Exports, ExportsIterator};
pub use crate::extern_ref::ExternRef;
pub use crate::externals::{
Extern, FromToNativeWasmType, Function, Global, HostFunction, Memory, Table, WasmTypeList,
};