Move ModuleInfo to wasmer-types

This commit is contained in:
Syrus Akbary
2021-07-16 15:42:39 -07:00
parent fe04ea894b
commit 98481f51fe
30 changed files with 101 additions and 92 deletions

View File

@ -31,10 +31,10 @@ use wasmer_compiler::{
};
use wasmer_types::entity::PrimaryMap;
use wasmer_types::{
FunctionIndex, FunctionType, GlobalIndex, LocalFunctionIndex, MemoryIndex, SignatureIndex,
TableIndex, Type,
FunctionIndex, FunctionType, GlobalIndex, LocalFunctionIndex, MemoryIndex, ModuleInfo,
SignatureIndex, TableIndex, Type,
};
use wasmer_vm::{MemoryStyle, ModuleInfo, TableStyle, VMOffsets};
use wasmer_vm::{MemoryStyle, TableStyle, VMOffsets};
const FUNCTION_SECTION: &str = "__TEXT,wasmer_function";