aboutsummaryrefslogtreecommitdiff
path: root/structs.py
diff options
context:
space:
mode:
authormryouse2022-06-17 04:10:10 +0000
committermryouse2022-06-17 04:10:44 +0000
commit91a8c05961831454ba8a2be261cc4f8b762d0e0c (patch)
treecf93fdc033c77af37b96a711d1555db5f912be08 /structs.py
parentac001ef2808f1209bba815a861c228b3321a71a3 (diff)
variadic functions
Diffstat (limited to 'structs.py')
-rw-r--r--structs.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/structs.py b/structs.py
index adfd0e4..02693be 100644
--- a/structs.py
+++ b/structs.py
@@ -62,6 +62,8 @@ class TokenType(Enum):
LITERAL_TYPE = auto()
BOOL_TYPE = auto()
+ MANY = auto()
+
@dataclass
class Token:
type_: TokenType