summaryrefslogtreecommitdiff
path: root/consts.py
diff options
context:
space:
mode:
authorAndrew <saintruler@gmail.com>2021-07-12 16:57:10 +0400
committerAndrew <saintruler@gmail.com>2021-07-12 16:59:08 +0400
commitf078f93ba357c3ede0b109a3b9ea5e79c7a8b777 (patch)
tree132c9d46ce508e6f4a0c31300b8d95bec89d4803 /consts.py
parent49df60f32aca6428706bc895b7e48ab2d68444b5 (diff)
Added ability to call functions as a statement.
Diffstat (limited to 'consts.py')
-rw-r--r--consts.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/consts.py b/consts.py
index 0a595c2..c28b33b 100644
--- a/consts.py
+++ b/consts.py
@@ -13,7 +13,7 @@ class TokenType:
class NodeType:
(
- NUMBER, OPERATOR, SYMBOL, FUNCALL, UNARY, ASSIGNMENT, *_
+ NUMBER, OPERATOR, SYMBOL, FUNCALL, ARGUMENTS, UNARY, ASSIGNMENT, *_
) = range(100)