1
0
mirror of synced 2024-11-27 17:10:51 +01:00
ImHex/lib/libimhex/include/hex/pattern_language/validator.hpp

32 lines
680 B
C++
Raw Normal View History

#pragma once
#include <hex.hpp>
#include <memory>
#include <optional>
#include <string>
#include <vector>
#include <hex/pattern_language/error.hpp>
namespace hex::pl {
class ASTNode;
class Validator {
public:
Validator() = default;
bool validate(const std::vector<std::shared_ptr<ASTNode>> &ast);
const std::optional<PatternLanguageError> &getError() { return this->m_error; }
private:
std::optional<PatternLanguageError> m_error;
[[noreturn]] static void throwValidatorError(const std::string &error, u32 lineNumber) {
throw PatternLanguageError(lineNumber, "Validator: " + error);
}
};
}