| 39 | ValdiArchive::ValdiArchive(const Byte* dataBegin, const Byte* dataEnd) : _dataBegin(dataBegin), _dataEnd(dataEnd) {} |
| 40 | |
| 41 | Error onModuleFailure(Error&& error) { |
| 42 | return error.rethrow("Invalid Valdi Archive"); |
| 43 | } |
| 44 | |
| 45 | static Result<BytesView> parseField(Parser<Byte>& parser, const LengthField& length) { |
| 46 | auto size = length.size(); |
no test coverage detected