Add IgnoreCase Keyword matcher for simple parser

This commit is contained in:
Jan
2021-10-31 15:22:03 +01:00
parent dcffa3d14d
commit 037e13b874
4 changed files with 53 additions and 0 deletions

View File

@ -12,6 +12,7 @@ public:
_NODISCARD MatcherFactoryWrapper<SimpleParserValue> Type(SimpleParserValueType type) const;
_NODISCARD MatcherFactoryWrapper<SimpleParserValue> Keyword(std::string value) const;
_NODISCARD MatcherFactoryWrapper<SimpleParserValue> KeywordIgnoreCase(std::string value) const;
_NODISCARD MatcherFactoryWrapper<SimpleParserValue> KeywordPrefix(std::string value) const;
_NODISCARD MatcherFactoryWrapper<SimpleParserValue> Identifier() const;
_NODISCARD MatcherFactoryWrapper<SimpleParserValue> String() const;