| 214 | } |
| 215 | |
| 216 | const char *getCurrentPtr() const { |
| 217 | if (offset >= data.size()) { |
| 218 | return nullptr; |
| 219 | } |
| 220 | return reinterpret_cast<const char *>(data.data() + offset); |
| 221 | } |
| 222 | |
| 223 | LogicalResult getString(uint64_t index, StringRef &result, |
| 224 | MLIRContext &context) const { |
no test coverage detected