waffle/src/lib.rs

14 lines
244 B
Rust
Raw Normal View History

2021-11-13 06:16:54 +00:00
//! WAFFLE Wasm analysis framework.
// Re-export wasmparser and wasmencoder for easier use of the right
// version by our embedders.
pub use wasm_encoder;
pub use wasmparser;
2021-11-13 06:16:54 +00:00
2021-11-14 01:52:30 +00:00
mod frontend;
mod ir;
mod localssa;
mod op_traits;
pub use ir::*;