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
+2
View File
@@ -51,6 +51,8 @@ private:
char peek();
char peekNext();
void increment();
void decrement();
char consume();
bool consumeSpecific(char character);