aboutsummaryrefslogtreecommitdiff
path: root/crates/libsyntax2/src/grammar.ron
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2018-08-24 09:21:13 +0100
committerAleksey Kladov <[email protected]>2018-08-24 09:21:13 +0100
commit719710a13256a32b9fcbf06c1ff43f8961b9b2e6 (patch)
treec194449b1fe2f6e7d4a1133cd10bf30b73d81998 /crates/libsyntax2/src/grammar.ron
parenta66c94af1bad3c2dcfd8dd4c07494d0cf6cc8b1b (diff)
break&continue
Diffstat (limited to 'crates/libsyntax2/src/grammar.ron')
-rw-r--r--crates/libsyntax2/src/grammar.ron4
1 files changed, 4 insertions, 0 deletions
diff --git a/crates/libsyntax2/src/grammar.ron b/crates/libsyntax2/src/grammar.ron
index 2cec5b3e3..dff88cc4a 100644
--- a/crates/libsyntax2/src/grammar.ron
+++ b/crates/libsyntax2/src/grammar.ron
@@ -75,6 +75,8 @@ Grammar(
75 "for", 75 "for",
76 "loop", 76 "loop",
77 "while", 77 "while",
78 "continue",
79 "break",
78 "if", 80 "if",
79 "else", 81 "else",
80 "match", 82 "match",
@@ -161,6 +163,8 @@ Grammar(
161 "IF_EXPR", 163 "IF_EXPR",
162 "WHILE_EXPR", 164 "WHILE_EXPR",
163 "LOOP_EXPR", 165 "LOOP_EXPR",
166 "CONTINUE_EXPR",
167 "BREAK_EXPR",
164 "FOR_EXPR", 168 "FOR_EXPR",
165 "BLOCK_EXPR", 169 "BLOCK_EXPR",
166 "RETURN_EXPR", 170 "RETURN_EXPR",