summaryrefslogtreecommitdiff
path: root/LANGUAGE.txt
diff options
context:
space:
mode:
Diffstat (limited to 'LANGUAGE.txt')
-rw-r--r--LANGUAGE.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/LANGUAGE.txt b/LANGUAGE.txt
index 0f55887..9d72f08 100644
--- a/LANGUAGE.txt
+++ b/LANGUAGE.txt
@@ -16,3 +16,7 @@ The usual infix expression rules apply, with the following precedence table:
^^ 11 Left
|| 12 Left (short-circuiting)
= 13 Right (also += -= *= /= %= **= &= ^= |=)
+
+
+break and continue get parsed to calls to the __break() and __continue()
+compiler intrinsics (thus become AST_CALL nodes).