Cleanup after removal of labels (Pancake)
Open
Pancake
refactoring
- Dominant language
- Standard ML
- Stars
- 1.2k
- Forks
- 104
- Avg merge
- 2d 21h
- Merged PRs (30d)
- 16
Description
The labels are now removed from the Pancake syntax, but there are still some residual syntactic redundancy that we should clean up. Namely,
```
Datatype:
word_lab = Word ('a word)
(* labels were defined here *)
End
Datatype:
v = Val ('a word_lab)
| Struct (v list)
End
Overload ValWord = “\w. Val (Word w)”
```
should be just:
```
Datatype:
v = Val ('a word)
| Struct (v list)
End
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.