waffle/src/lib.rs
Chris Fallin c1d4e0c6b9 WIP.
2021-11-13 20:59:43 -08:00

15 lines
258 B
Rust

//! 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;
mod dataflow;
mod frontend;
mod ir;
mod localssa;
mod op_traits;
pub use ir::*;