2021-10-10 20:26:30 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <string>
|
2021-10-11 13:59:23 +00:00
|
|
|
|
2021-10-24 12:39:08 +00:00
|
|
|
#include "parser_t.h"
|
2021-10-11 21:09:03 +00:00
|
|
|
|
2021-10-24 12:39:08 +00:00
|
|
|
class opcode_test_suite_t final : public parser_t {
|
2021-10-10 20:26:30 +00:00
|
|
|
private:
|
2021-10-24 12:39:08 +00:00
|
|
|
[[nodiscard]] auto array() const noexcept { return raw().get_array(); }
|
2021-10-10 20:26:30 +00:00
|
|
|
|
|
|
|
public:
|
2021-10-24 12:39:08 +00:00
|
|
|
opcode_test_suite_t(std::string path) noexcept;
|
2021-10-22 09:51:36 +00:00
|
|
|
|
2021-10-24 12:39:08 +00:00
|
|
|
[[nodiscard]] auto begin() const noexcept { return array().begin(); }
|
|
|
|
[[nodiscard]] auto end() const noexcept { return array().end(); }
|
2021-10-10 20:26:30 +00:00
|
|
|
};
|