Add expression numerics and int to multiple sequences for menu items

This commit is contained in:
Jan
2021-11-28 20:20:28 +01:00
parent 8e7cd0140c
commit 74988af30b
2 changed files with 26 additions and 26 deletions

View File

@ -1,5 +1,7 @@
#pragma once
#include <cassert>
#include "Utils/ClassUtils.h"
#include "Parsing/IParserValue.h"
#include "AbstractMatcher.h"
@ -35,6 +37,7 @@ protected:
{
AbstractMatcher<TokenType>* matcher = m_supplier->GetMatcherForLabel(m_label);
assert(matcher);
if (matcher)
return matcher->Match(lexer, tokenOffset);