()
| 325 | |
| 326 | #[no_mangle] |
| 327 | pub extern "C" fn UIPluginInit() -> bool { |
| 328 | register_command( |
| 329 | "DWARF Dump", |
| 330 | "Show embedded DWARF info as a tree structure for you to navigate", |
| 331 | DWARFDump {}, |
| 332 | ); |
| 333 | true |
| 334 | } |
nothing calls this directly
no test coverage detected