Skip to content

Commit

Permalink
#2178 Allow zero repetitions of yield after yieldAll
Browse files Browse the repository at this point in the history
  • Loading branch information
homedirectory committed Feb 28, 2024
1 parent faa630b commit 05f1c44
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ public final class CanonicalEqlGrammar {
to(yield, label("operand", YieldOperand), label("model_", Yield1Model)).

derive(YieldMany).
to(opt(yieldAll), repeat1(AliasedYield), label("model_", YieldManyModel)).
to(opt(yieldAll), repeat(AliasedYield), label("model_", YieldManyModel)).

derive(AliasedYield).
to(yield, label("operand", YieldOperand), label("alias", YieldAlias)).
Expand Down

0 comments on commit 05f1c44

Please sign in to comment.