(
&mut self,
module: StaticModuleIndex,
func: DefinedFuncIndex,
)
| 27 | |
| 28 | impl<'a> Compilation<'a> { |
| 29 | fn function_frame_info( |
| 30 | &mut self, |
| 31 | module: StaticModuleIndex, |
| 32 | func: DefinedFuncIndex, |
| 33 | ) -> expression::FunctionFrameInfo<'a> { |
| 34 | let (_, func) = self.function(module, func); |
| 35 | |
| 36 | expression::FunctionFrameInfo { |
| 37 | value_ranges: &func.value_labels_ranges, |
| 38 | memory_offset: self.module_memory_offsets[module].clone(), |
| 39 | } |
| 40 | } |
| 41 | } |
| 42 | |
| 43 | fn load_dwp<'data>( |
no test coverage detected