diff options
| author | Andrew <saintruler@gmail.com> | 2021-07-12 16:57:10 +0400 |
|---|---|---|
| committer | Andrew <saintruler@gmail.com> | 2021-07-12 16:59:08 +0400 |
| commit | f078f93ba357c3ede0b109a3b9ea5e79c7a8b777 (patch) | |
| tree | 132c9d46ce508e6f4a0c31300b8d95bec89d4803 /consts.py | |
| parent | 49df60f32aca6428706bc895b7e48ab2d68444b5 (diff) | |
Added ability to call functions as a statement.
Diffstat (limited to 'consts.py')
| -rw-r--r-- | consts.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -13,7 +13,7 @@ class TokenType: class NodeType: ( - NUMBER, OPERATOR, SYMBOL, FUNCALL, UNARY, ASSIGNMENT, *_ + NUMBER, OPERATOR, SYMBOL, FUNCALL, ARGUMENTS, UNARY, ASSIGNMENT, *_ ) = range(100) |