Adds support for parenthesized expressions

This commit is contained in:
2019-05-21 17:16:53 +02:00
parent ae25598864
commit aec07bd29a
7 changed files with 186 additions and 127 deletions

View File

@@ -12,6 +12,8 @@ enum class TokenKind{
StarToken,
AssignmentToken,
EqualityToken,
OpenParenthesis,
CloseParenthesis,
Identifier,