aboutsummaryrefslogtreecommitdiff
path: root/neb/structs.py
diff options
context:
space:
mode:
Diffstat (limited to 'neb/structs.py')
-rw-r--r--neb/structs.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/neb/structs.py b/neb/structs.py
index 5298e61..b8effd0 100644
--- a/neb/structs.py
+++ b/neb/structs.py
@@ -11,6 +11,8 @@ class TokenType(Enum):
OPEN_PAREN = auto()
CLOSE_PAREN = auto()
+ OPEN_BRACKET = auto()
+ CLOSE_BRACKET = auto()
EOF = auto()
@@ -43,6 +45,7 @@ class TokenType(Enum):
USER_TYPE = auto()
MANY = auto()
+ COLON = auto()
@dataclass
class Token: