Util: Rename Lexer/Parser get functions to consume

This commit is contained in:
Riyyi
2022-07-20 22:57:35 +02:00
parent 8dd3f11d7b
commit 42143fed71
4 changed files with 39 additions and 39 deletions
+4 -4
View File
@@ -49,10 +49,10 @@ public:
void analyze();
private:
bool getString();
bool getNumberOrLiteral(Token::Type type);
bool getNumber();
bool getLiteral();
bool consumeString();
bool consumeNumberOrLiteral(Token::Type type);
bool consumeNumber();
bool consumeLiteral();
Job* m_job { nullptr };