summaryrefslogtreecommitdiff
path: root/LANGUAGE.txt
diff options
context:
space:
mode:
authortomsmeding <tom.smeding@gmail.com>2016-08-06 11:51:11 +0200
committertomsmeding <tom.smeding@gmail.com>2016-08-06 11:51:11 +0200
commit6eb5ea040f9ebc1a99953ff72c48ebe9f97f7f3c (patch)
tree8cfe5e013cf551053ebb4faceaa514c435a7e3c6 /LANGUAGE.txt
parent2696105687d9c889ec4cccd449846135f83af404 (diff)
Ditch suffix; make prefix work better
Diffstat (limited to 'LANGUAGE.txt')
-rw-r--r--LANGUAGE.txt5
1 files changed, 2 insertions, 3 deletions
diff --git a/LANGUAGE.txt b/LANGUAGE.txt
index 3259182..48dcb95 100644
--- a/LANGUAGE.txt
+++ b/LANGUAGE.txt
@@ -16,9 +16,8 @@ The usual infix expression rules apply, with the following precedence table:
& 9 Left
+ - 10 Left
* / // % 11 Left
- (-) ! ~ 12 Prefix (unary)
- (!) 13 Suffix (unary)
- ** 14 Right
+ (-) (!) (~) 12 Prefix (unary)
+ ** 13 Right
break and continue get parsed to calls to the __break() and __continue()