| 350 | } |
| 351 | |
| 352 | Result OnSectionSymbol(Index index, |
| 353 | uint32_t flags, |
| 354 | Index section_index) override { |
| 355 | objdump_state_->symtab[index] = {SymbolType::Section, |
| 356 | std::string(GetSectionName(section_index)), |
| 357 | section_index}; |
| 358 | return Result::Ok; |
| 359 | } |
| 360 | |
| 361 | Result OnTagSymbol(Index index, |
| 362 | uint32_t flags, |
nothing calls this directly
no test coverage detected