opcodes and wip

This commit is contained in:
NikVolf
2017-03-31 03:28:03 +03:00
parent 9e3823c3f2
commit f202703106
4 changed files with 223 additions and 1 deletions

View File

@ -6,13 +6,14 @@ mod primitives;
mod types;
mod import_entry;
mod export_entry;
mod ops;
pub use self::module::Module;
pub use self::section::Section;
pub use self::import_entry::{ImportEntry, MemoryType, TableType, External};
pub use self::export_entry::{ExportEntry, Internal};
pub use self::primitives::{VarUint32, VarUint7, VarUint1, VarInt7, Uint32, CountedList};
pub use self::types::ValueType;
pub use self::types::{ValueType, BlockType};
pub trait Deserialize : Sized {
type Error;