From f078f93ba357c3ede0b109a3b9ea5e79c7a8b777 Mon Sep 17 00:00:00 2001 From: Andrew Date: Mon, 12 Jul 2021 16:57:10 +0400 Subject: Added ability to call functions as a statement. --- consts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'consts.py') 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) -- cgit v1.2.3