Added grouping

This commit is contained in:
Rafał Grodziński
2025-05-31 20:54:25 +09:00
parent c6f2156e3b
commit 2b78b5bf23
6 changed files with 38 additions and 2 deletions

View File

@@ -43,7 +43,7 @@ std::string Token::toString() {
case PERCENT:
return "PERCENT";
case LEFT_PAREN:
return "LEFT_PARENT";
return "LEFT_PAREN";
case RIGHT_PAREN:
return "RIGHT_PAREN";
case DOT: