aboutsummaryrefslogtreecommitdiff
path: root/tokens.py
diff options
context:
space:
mode:
Diffstat (limited to 'tokens.py')
-rw-r--r--tokens.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tokens.py b/tokens.py
index de482c2..1f1fe1b 100644
--- a/tokens.py
+++ b/tokens.py
@@ -104,10 +104,11 @@ class NebExpression(NebBaseType):
class NebFunction():
- def __init__(self, name, args, returns):
+ def __init__(self, name, args, returns, many=None):
self.name = name
self.args = args
self.returns = returns
+ self.many = many
class NebBool(NebLiteral):
def __init__(self, value):