#pragma once #include #include "Parsing/Simple/SimpleParserValue.h" #include "Parsing/Matcher/AbstractMatcher.h" class SimpleMatcherKeyword final : public AbstractMatcher { size_t m_hash; std::string m_value; protected: MatcherResult CanMatch(ILexer* lexer, unsigned tokenOffset) override; public: explicit SimpleMatcherKeyword(std::string value); };