| 89 | class EncodingReader { |
| 90 | public: |
| 91 | EncodingReader(ArrayRef<uint8_t> data, MLIRContext &context) |
| 92 | : data(data), offset(0), context(context) {} |
| 93 | |
| 94 | LogicalResult readVarInt(uint64_t &result, uint64_t max = 0) { |
| 95 | if (offset >= data.size()) |
nothing calls this directly
no outgoing calls
no test coverage detected