aboutsummaryrefslogtreecommitdiff
path: root/src/grammar.ron
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2018-08-05 16:16:52 +0100
committerAleksey Kladov <[email protected]>2018-08-05 16:16:52 +0100
commit720861bcff4b9f67ca4def66e2996015811fa90b (patch)
tree9bed19490f802860e0c17532eaed853dfeb548bb /src/grammar.ron
parentb0291cd8c2ec1d6d164caaa743f7484416e9b3f5 (diff)
Lopps && logical ops
Diffstat (limited to 'src/grammar.ron')
-rw-r--r--src/grammar.ron3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/grammar.ron b/src/grammar.ron
index 9e122091b..d5bdb206c 100644
--- a/src/grammar.ron
+++ b/src/grammar.ron
@@ -41,6 +41,8 @@ Grammar(
41 [">=", "GTEQ"], 41 [">=", "GTEQ"],
42 ["+=", "PLUSEQ"], 42 ["+=", "PLUSEQ"],
43 ["-=", "MINUSEQ"], 43 ["-=", "MINUSEQ"],
44 ["&&", "AMPERSANDAMPERSAND"],
45 ["||", "PIPEPIPE"],
44 ], 46 ],
45 keywords: [ 47 keywords: [
46 "use", 48 "use",
@@ -143,6 +145,7 @@ Grammar(
143 "LAMBDA_EXPR", 145 "LAMBDA_EXPR",
144 "IF_EXPR", 146 "IF_EXPR",
145 "WHILE_EXPR", 147 "WHILE_EXPR",
148 "LOOP_EXPR",
146 "BLOCK_EXPR", 149 "BLOCK_EXPR",
147 "RETURN_EXPR", 150 "RETURN_EXPR",
148 "MATCH_EXPR", 151 "MATCH_EXPR",