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