diff options
| author | Andrew <saintruler@gmail.com> | 2021-07-12 16:57:10 +0400 |
|---|---|---|
| committer | Andrew <saintruler@gmail.com> | 2021-07-12 16:57:10 +0400 |
| commit | 95ab5fec4a930114fabeef77f7a458c8dd163142 (patch) | |
| tree | ccec54fdcbb15276689249d70381fe87fda53f97 /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) |