Path constructing operands

This commit is contained in:
Jakub Melka
2019-02-14 19:45:07 +01:00
parent b01a135dfd
commit 648879eadf
7 changed files with 552 additions and 174 deletions

View File

@ -170,6 +170,10 @@ public:
/// \param character Character to be tested
static constexpr bool isRegular(char character) { return !isWhitespace(character) && !isDelimiter(character); }
/// Returns string from operand type
/// \param type Token type
static QString getStringFromOperandType(TokenType type);
private:
inline char lookChar() const { Q_ASSERT(m_current != m_end); return *m_current; }