This commit is contained in:
Abdelrahman Said 2025-06-08 15:42:08 +01:00
parent 38366141c5
commit cec9ef24de

View File

@ -14,7 +14,7 @@ struct Scanner {
char peek(); char peek();
void add_token(TokenType type); void add_token(TokenType type);
void add_token(TokenType type, Object literal); void add_token(TokenType type, Object literal);
void string(); void string();
std::string code; std::string code;
std::vector<Token> tokens; std::vector<Token> tokens;