Util: Remove unused function

This commit is contained in:
Riyyi
2022-07-01 11:36:11 +02:00
parent 4457a711cd
commit ed5efdb0d6
2 changed files with 0 additions and 11 deletions
-10
View File
@@ -154,16 +154,6 @@ char Lexer::consume()
return character;
}
bool Lexer::consumeSpecific(char character)
{
if (peek() != character) {
return false;
}
increment();
return true;
}
bool Lexer::getString()
{
size_t column = m_column;
-1
View File
@@ -54,7 +54,6 @@ private:
void increment();
void decrement();
char consume();
bool consumeSpecific(char character);
bool getString();
bool getNumberOrLiteral(Token::Type type);