orca_wasm/module_builder.rs
1//! Trait that defines general injection behaviour
2
3use crate::ir::id::LocalID;
4use crate::DataType;
5
6pub trait AddLocal {
7 /// Adds a local and in the current function and returns its ID
8 /// note: the implementors of this trait will keep track of the location,
9 /// i.e. which function, where this local is added
10 fn add_local(&mut self, ty: DataType) -> LocalID;
11}