We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
loop
1 parent d049cce commit 7cd11aeCopy full SHA for 7cd11ae
src/compiler/parser.rs
@@ -5242,6 +5242,10 @@ impl Parser {
5242
"emit" => "identifier",
5243
"value" => "_"
5244
])),
5245
+ (value!([
5246
+ "emit" => "identifier",
5247
+ "value" => "___"
5248
+ ])),
5249
(value!([
5250
"emit" => "value_instance",
5251
"children" =>
src/compiler/tokay.tok
@@ -287,7 +287,7 @@ Atomic : @{
287
Keyword<'for'> _ Expect<Lvalue> _ Keyword<Expect<'in'>> _ Expect<Expression> \
288
___ Expect<Statement> ast("op_for")
289
Keyword<'loop'> _ Expression ___ Block ast("op_loop")
290
- Keyword<'loop'> _ Expect<Block> ast("op_loop")
+ Keyword<'loop'> _ ___ Expect<Block> ast("op_loop")
291
Load
292
}
293
0 commit comments