| 570 | }; |
| 571 | |
| 572 | std::string BinaryReaderObjdumpDisassemble::BlockSigToString(Type type) const { |
| 573 | if (type.IsIndex()) { |
| 574 | return StringPrintf("type[%d]", type.GetIndex()); |
| 575 | } else if (type == Type::Void) { |
| 576 | return ""; |
| 577 | } else { |
| 578 | return type.GetName(); |
| 579 | } |
| 580 | } |
| 581 | |
| 582 | Result BinaryReaderObjdumpDisassemble::OnOpcode(Opcode opcode) { |
| 583 | BinaryReaderObjdumpBase::OnOpcode(opcode); |
nothing calls this directly
no test coverage detected