| 2033 | } |
| 2034 | |
| 2035 | Result BinaryReaderObjdump::OnNameEntry(NameSectionSubsection type, |
| 2036 | Index index, |
| 2037 | std::string_view name) { |
| 2038 | PrintDetails(" - %s[%" PRIindex "] <" PRIstringview ">\n", |
| 2039 | GetNameSectionSubsectionName(type), index, |
| 2040 | WABT_PRINTF_STRING_VIEW_ARG(name)); |
| 2041 | return Result::Ok; |
| 2042 | } |
| 2043 | |
| 2044 | Result BinaryReaderObjdump::OnLocalName(Index func_index, |
| 2045 | Index local_index, |
nothing calls this directly
no test coverage detected