removed empty lines

This commit is contained in:
Felix Müller 2024-04-29 17:22:35 +02:00
parent 6de4196c0a
commit 65fe3acdb8
1 changed files with 0 additions and 16 deletions

View File

@ -69,32 +69,16 @@ statement: assign
| decl | decl
| definition; | definition;
identlist: Ident ',' identlist identlist: Ident ',' identlist
| Ident | Ident
| ; | ;
decl: type ':' identlist { DEBUG("Declaration"); }; decl: type ':' identlist { DEBUG("Declaration"); };
definition: decl '=' expr { DEBUG("Definition"); }; definition: decl '=' expr { DEBUG("Definition"); };
assign: Ident '=' expr { DEBUG("Assignment"); }; assign: Ident '=' expr { DEBUG("Assignment"); };
sign: KeySigned sign: KeySigned
| KeyUnsigned | KeyUnsigned
| ; | ;