Fix first unnecessary supercombinator
This commit is contained in:
parent
69254f8032
commit
08917be1c6
10 changed files with 66 additions and 51 deletions
|
|
@ -1,12 +1,6 @@
|
|||
|
||||
|
||||
Program. Program ::= [ScDef];
|
||||
|
||||
ScDef. ScDef ::= Bind;
|
||||
separator ScDef ";";
|
||||
|
||||
separator Ident " ";
|
||||
|
||||
Program. Program ::= [Bind];
|
||||
|
||||
EId. Exp3 ::= Ident;
|
||||
EInt. Exp3 ::= Integer;
|
||||
|
|
@ -17,6 +11,7 @@ EAbs. Exp ::= "\\" Ident "." Exp;
|
|||
|
||||
Bind. Bind ::= Ident [Ident] "=" Exp;
|
||||
separator Bind ";";
|
||||
separator Ident " ";
|
||||
|
||||
coercions Exp 3;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue