orca_wasm/ir/
mod.rs

1//! The Intermediate Representation for components and modules.
2
3pub mod component;
4pub mod function;
5mod helpers;
6pub mod id;
7#[cfg(test)]
8pub mod instr_tests;
9pub mod module;
10pub mod section;
11pub mod types;
12pub(crate) mod wrappers;