summaryrefslogtreecommitdiffstats
path: root/src/front/token.py
diff options
context:
space:
mode:
authorBenedikt Böhm <bb@xnull.de>2009-06-29 12:28:01 +0200
committerBenedikt Böhm <bb@xnull.de>2009-06-29 12:28:01 +0200
commit4aedc5d76250fae734af1cd89256ec70e165ab18 (patch)
tree9f9c290f7d31a9aa966045019972670382596d45 /src/front/token.py
parent17fab2bc59945045a8df39ece8c845d1565245da (diff)
downloadswppy-4aedc5d76250fae734af1cd89256ec70e165ab18.tar.gz
swppy-4aedc5d76250fae734af1cd89256ec70e165ab18.tar.xz
swppy-4aedc5d76250fae734af1cd89256ec70e165ab18.zip
fix function_call
- function_call is now an expression and a statement - call keyword is required to make lookahead = 1 work
Diffstat (limited to 'src/front/token.py')
-rw-r--r--src/front/token.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/front/token.py b/src/front/token.py
index bfcc082..78e9dab 100644
--- a/src/front/token.py
+++ b/src/front/token.py
@@ -27,6 +27,7 @@ Tag.RPAREN = Tag("RPAREN")
Tag.NEWLINE = Tag("NEWLINE")
Tag.COMMA = Tag("COMMA")
Tag.FUN = Tag("FUN")
+Tag.CALL = Tag("CALL")
Tag.ASSIGNMENT = Tag("ASSIGNMENT")
Tag.RETURN = Tag("RETURN")
Tag.OPERATOR = Tag("OPERATOR")