cleanup
This commit is contained in:
crumbtoo
2023-12-06 17:15:03 -07:00
parent 32964aff1c
commit 38e42752cf
4 changed files with 11 additions and 6 deletions

View File

@@ -74,6 +74,8 @@ Program : ScDefs { Program $1 }
ScDefs :: { [ScDef] }
ScDefs : ScDef ';' ScDefs { $1 : $3 }
| ScDef ';' { [$1] }
| ScDef { [$1] }
| {- epsilon -} { [] }
ScDef :: { ScDef }