aboutsummaryrefslogtreecommitdiff
path: root/src/grammar.ron
diff options
context:
space:
mode:
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",