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

@@ -5,7 +5,8 @@ use crate::types::{Val, ValFuncRef};
use crate::RuntimeError;
use crate::TableType;
use std::sync::Arc;
use wasmer_vm::{EngineExport, ExportTable, Table as RuntimeTable, VMCallerCheckedAnyfunc};
use wasmer_engine::EngineExport;
use wasmer_vm::{ExportTable, Table as RuntimeTable, VMCallerCheckedAnyfunc};
/// A WebAssembly `table` instance.
///