| 530 | } |
| 531 | |
| 532 | Result BinaryReaderLogging::OnNameEntry(NameSectionSubsection type, |
| 533 | Index index, |
| 534 | std::string_view name) { |
| 535 | LOGF("OnNameEntry(type: %s, index: %" PRIindex ", name: \"" PRIstringview |
| 536 | "\")\n", |
| 537 | GetNameSectionSubsectionName(type), index, |
| 538 | WABT_PRINTF_STRING_VIEW_ARG(name)); |
| 539 | return reader_->OnNameEntry(type, index, name); |
| 540 | } |
| 541 | |
| 542 | Result BinaryReaderLogging::OnDylinkInfo(uint32_t mem_size, |
| 543 | uint32_t mem_align, |
nothing calls this directly
no test coverage detected