Recognize script numeric and int values as strings

This commit is contained in:
Jan
2021-11-20 12:01:04 +01:00
parent ed329e6453
commit ef1ad18332
5 changed files with 110 additions and 14 deletions
@@ -0,0 +1,13 @@
#pragma once
#include "Parsing/Simple/SimpleParserValue.h"
#include "Parsing/Matcher/AbstractMatcher.h"
class MenuMatcherScriptNumeric final : public AbstractMatcher<SimpleParserValue>
{
protected:
MatcherResult<SimpleParserValue> CanMatch(ILexer<SimpleParserValue>* lexer, unsigned tokenOffset) override;
public:
MenuMatcherScriptNumeric();
};