(
&mut self,
f: impl FnOnce(&dyn Compiler) -> Result<CompileOutput<'a>> + Send + 'a,
)
| 294 | |
| 295 | impl<'a> CompileInputs<'a> { |
| 296 | fn push_input( |
| 297 | &mut self, |
| 298 | f: impl FnOnce(&dyn Compiler) -> Result<CompileOutput<'a>> + Send + 'a, |
| 299 | ) { |
| 300 | self.inputs.push(Box::new(f)); |
| 301 | } |
| 302 | |
| 303 | /// Create the `CompileInputs` for a core Wasm module. |
| 304 | fn for_module( |
no test coverage detected