Rewrite exports and imports

This commit is contained in:
Lachlan Sneff
2019-01-10 22:59:57 -05:00
parent 1a5ef3aea2
commit 230e43a894
81 changed files with 75027 additions and 16753 deletions

View File

@ -4,21 +4,23 @@ extern crate field_offset;
#[macro_use]
mod macros;
pub mod backend;
mod backing;
pub mod export;
pub mod import;
mod instance;
mod memory;
mod recovery;
mod sighandler;
mod sig_registry;
mod mmap;
pub mod module;
pub mod backend;
mod recovery;
mod sig_registry;
mod sighandler;
pub mod table;
pub mod types;
pub mod vm;
pub mod vmcalls;
pub use self::instance::{Import, ImportResolver, Imports, FuncRef, Instance};
pub use self::instance::{FuncRef, Instance};
pub use self::memory::LinearMemory;
/// Compile a webassembly module using the provided compiler.