| 2344 | } |
| 2345 | |
| 2346 | Result BinaryReaderObjdump::OnSectionSymbol(Index index, |
| 2347 | uint32_t flags, |
| 2348 | Index section_index) { |
| 2349 | auto sym_name = GetSectionName(section_index); |
| 2350 | assert(!sym_name.empty()); |
| 2351 | PrintDetails(" - %d: S <" PRIstringview "> section=%" PRIindex, index, |
| 2352 | WABT_PRINTF_STRING_VIEW_ARG(sym_name), section_index); |
| 2353 | return PrintSymbolFlags(flags); |
| 2354 | } |
| 2355 | |
| 2356 | Result BinaryReaderObjdump::OnTagSymbol(Index index, |
| 2357 | uint32_t flags, |
nothing calls this directly
no test coverage detected