aboutsummaryrefslogtreecommitdiff
path: root/src/grammar.ron
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2018-08-07 12:24:03 +0100
committerAleksey Kladov <[email protected]>2018-08-07 12:24:03 +0100
commit8908e51aeaee91d6b63684a21ed1ca16de49916f (patch)
tree30fa7b9ac02c7326d3c7fbd192ebe2ef46b82d58 /src/grammar.ron
parent498098a5d968f06f08fa093f1fd5a43a9a61ecf3 (diff)
full precedence
Diffstat (limited to 'src/grammar.ron')
-rw-r--r--src/grammar.ron5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/grammar.ron b/src/grammar.ron
index b525476c2..0620a8b8c 100644
--- a/src/grammar.ron
+++ b/src/grammar.ron
@@ -43,6 +43,10 @@ Grammar(
43 ["-=", "MINUSEQ"], 43 ["-=", "MINUSEQ"],
44 ["&&", "AMPAMP"], 44 ["&&", "AMPAMP"],
45 ["||", "PIPEPIPE"], 45 ["||", "PIPEPIPE"],
46 ["<<", "SHL"],
47 [">>", "SHR"],
48 ["<<=", "SHLEQ"],
49 [">>=", "SHREQ"],
46 ], 50 ],
47 keywords: [ 51 keywords: [
48 "use", 52 "use",
@@ -168,6 +172,7 @@ Grammar(
168 "REF_EXPR", 172 "REF_EXPR",
169 "DEREF_EXPR", 173 "DEREF_EXPR",
170 "NOT_EXPR", 174 "NOT_EXPR",
175 "NEG_EXPR",
171 176
172 "RANGE_EXPR", // just weird 177 "RANGE_EXPR", // just weird
173 "BIN_EXPR", 178 "BIN_EXPR",