diff options
author | Adam Chlipala <adamc@hcoop.net> | 2008-06-26 09:48:54 -0400 |
---|---|---|
committer | Adam Chlipala <adamc@hcoop.net> | 2008-06-26 09:48:54 -0400 |
commit | bef69954307005832dca731aff9a7b008c88c8d8 (patch) | |
tree | 801e896f527636ab21211f11839f3c1d20f5ac10 /src/source.sml | |
parent | b03ac1efc8ac5197688a97d1b8b27106654d504d (diff) |
Elaborating cfold
Diffstat (limited to 'src/source.sml')
-rw-r--r-- | src/source.sml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/source.sml b/src/source.sml index 9ea1ea20..2246399b 100644 --- a/src/source.sml +++ b/src/source.sml @@ -51,12 +51,13 @@ datatype con' = | CVar of string list * string | CApp of con * con - | CAbs of string * kind * con + | CAbs of string * kind option * con | CName of string | CRecord of (con * con) list | CConcat of con * con + | CFold | CWild of kind |