Working proof of concept of multiple left associative operators

This commit is contained in:
Bartłomiej Pluta
2019-07-10 15:02:17 +02:00
parent 823c5cb18f
commit 0a7d29d4a1
15 changed files with 138 additions and 58 deletions

View File

@@ -2,6 +2,7 @@ from enum import Enum
class TokenType(Enum):
EQUAL = '=='
OPEN_CURLY = '{'
CLOSE_CURLY = '}'
OPEN_PAREN = '('