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
+5 -5
View File
@@ -31,11 +31,11 @@ private:
Token peek();
Token consume();
Value getLiteral();
Value getNumber();
Value getString();
Value getArray();
Value getObject();
Value consumeLiteral();
Value consumeNumber();
Value consumeString();
Value consumeArray();
Value consumeObject();
Job* m_job { nullptr };