summaryrefslogtreecommitdiff
path: root/LANGUAGE.txt
diff options
context:
space:
mode:
authorTom Smeding <tom.smeding@gmail.com>2016-07-30 18:26:24 +0200
committerTom Smeding <tom.smeding@gmail.com>2016-07-30 18:26:24 +0200
commit8b49e73d6089e4a9195ce01c3f4c95e85336397d (patch)
tree814dff997ccba703a5108e50520fdef52661d3a5 /LANGUAGE.txt
parent94fd6ce2902ebb8b933763bda8c3280914d6ae20 (diff)
Second
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).