Skip to content

Commit

Permalink
Minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
gzanitti committed Sep 30, 2024
1 parent 3e39cba commit fb65505
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions parser/src/powdr.lalrpop
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@ pub PilStatement = {
PolynomialConstantDefinition,
PolynomialCommitDeclaration,
<start:@L> <decl:EnumDeclaration> <end:@R> => PilStatement::EnumDeclaration(ctx.source_ref(start, end), decl),
<start:@L> <decl:StructDeclaration> <end:@R> => PilStatement::StructDeclaration(ctx.source_ref(start, end), decl),
<start:@L> <impl_:TraitImplementation> <end:@R> => PilStatement::TraitImplementation(ctx.source_ref(start, end), impl_),
<start:@L> <decl:TraitDeclaration> <end:@R> => PilStatement::TraitDeclaration(ctx.source_ref(start, end), decl),
ExpressionStatement,
Expand Down

0 comments on commit fb65505

Please sign in to comment.