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
| definition;
identlist: Ident ',' identlist
| Ident
| ;
decl: type ':' identlist { DEBUG("Declaration"); };
definition: decl '=' expr { DEBUG("Definition"); };
assign: Ident '=' expr { DEBUG("Assignment"); };
sign: KeySigned
| KeyUnsigned
| ;