| 589 | } |
| 590 | |
| 591 | LogicalResult parseTypeImpl(uint8_t typeTag, ArrayRef<uint8_t> payloadBytes, |
| 592 | Type &result) { |
| 593 | EncodingReader reader(payloadBytes, context); |
| 594 | // Generated complete switch statement. |
| 595 | #define GEN_TYPE_READER_DISPATCH |
| 596 | #include "TypeBytecodeReader.inc" |
| 597 | } |
| 598 | |
| 599 | MLIRContext &context; |
| 600 | ArrayRef<uint8_t> payload; |
nothing calls this directly
no outgoing calls
no test coverage detected