Util: Add increment() and decrement() to Lexer

This commit is contained in:
Riyyi
2022-06-30 20:46:11 +02:00
parent b41bba72c9
commit 356cdaf051
2 changed files with 20 additions and 12 deletions
+18 -12
View File
@@ -130,8 +130,7 @@ void Lexer::analyze()
break; break;
} }
m_index++; increment();
m_column++;
} }
} }
@@ -147,11 +146,22 @@ char Lexer::peekNext()
return m_job->input()[m_index + 1]; return m_job->input()[m_index + 1];
} }
void Lexer::increment()
{
m_index++;
m_column++;
}
void Lexer::decrement()
{
m_index--;
m_column--;
}
char Lexer::consume() char Lexer::consume()
{ {
char character = peek(); char character = peek();
m_index++; increment();
m_column++;
return character; return character;
} }
@@ -161,8 +171,7 @@ bool Lexer::consumeSpecific(char character)
return false; return false;
} }
m_index++; increment();
m_column++;
return true; return true;
} }
@@ -196,9 +205,8 @@ bool Lexer::getString()
break; break;
} }
m_index++;
m_column++;
symbol += character; symbol += character;
increment();
} }
printf("Pushing -> String: \"%s\"\t%zu[%zu]\n", symbol.c_str(), m_line, column); printf("Pushing -> String: \"%s\"\t%zu[%zu]\n", symbol.c_str(), m_line, column);
@@ -221,12 +229,10 @@ bool Lexer::getNumberOrLiteral(Token::Type type)
break; break;
} }
m_index++;
m_column++;
symbol += character; symbol += character;
increment();
} }
m_index--; decrement();
m_column--;
m_tokens->push_back({ type, m_line, column, symbol }); m_tokens->push_back({ type, m_line, column, symbol });
+2
View File
@@ -51,6 +51,8 @@ private:
char peek(); char peek();
char peekNext(); char peekNext();
void increment();
void decrement();
char consume(); char consume();
bool consumeSpecific(char character); bool consumeSpecific(char character);