(obj: &Object, symbol_index: usize)
| 26 | } |
| 27 | |
| 28 | fn find_extab_entry(obj: &Object, symbol_index: usize) -> Option<&ExceptionInfo> { |
| 29 | (obj.arch.as_ref() as &dyn Any) |
| 30 | .downcast_ref::<objdiff_core::arch::ppc::ArchPpc>() |
| 31 | .and_then(|ppc| ppc.extab_for_symbol(symbol_index)) |
| 32 | } |
| 33 | |
| 34 | fn extab_text_ui( |
| 35 | ui: &mut egui::Ui, |
no test coverage detected