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:57:10 +0400
commit95ab5fec4a930114fabeef77f7a458c8dd163142 (patch)
treeccec54fdcbb15276689249d70381fe87fda53f97 /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)