(
&mut self,
funcs: impl Iterator<Item = &'a Function>,
interface: Option<&WorldKey>,
)
| 352 | } |
| 353 | |
| 354 | pub fn generate_imports<'a>( |
| 355 | &mut self, |
| 356 | funcs: impl Iterator<Item = &'a Function>, |
| 357 | interface: Option<&WorldKey>, |
| 358 | ) { |
| 359 | for func in funcs { |
| 360 | self.generate_guest_import(func, interface); |
| 361 | } |
| 362 | } |
| 363 | |
| 364 | pub fn align_area(&mut self, alignment: Alignment) { |
| 365 | match alignment { |
no test coverage detected