Move EngineExport to engine

This commit is contained in:
Mark McCaskey
2020-11-25 16:44:21 -08:00
parent 7013163829
commit 8669e92ed4
17 changed files with 56 additions and 101 deletions

View File

@@ -15,10 +15,10 @@ use crate::externals::function::{
};
use crate::{FromToNativeWasmType, Function, FunctionType, RuntimeError, Store, WasmTypeList};
use std::panic::{catch_unwind, AssertUnwindSafe};
use wasmer_engine::EngineExportFunction;
use wasmer_types::NativeWasmType;
use wasmer_vm::{
EngineExportFunction, ExportFunction, VMDynamicFunctionContext, VMFunctionBody,
VMFunctionEnvironment, VMFunctionKind,
ExportFunction, VMDynamicFunctionContext, VMFunctionBody, VMFunctionEnvironment, VMFunctionKind,
};
/// A WebAssembly function that can be called natively