waffle/src/lib.rs
2022-11-01 20:43:47 -07:00

18 lines
277 B
Rust

//! WAFFLE Wasm analysis framework.
#![allow(dead_code)]
// Re-export wasmparser for easier use of the right version by our embedders.
pub use wasmparser;
mod backend;
mod cfg;
mod entity;
mod frontend;
mod ir;
mod op_traits;
mod ops;
pub use ir::*;
pub use ops::Operator;