summaryrefslogtreecommitdiff
path: root/src/source.sml
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adamc@hcoop.net>2008-06-08 14:25:27 -0400
committerGravatar Adam Chlipala <adamc@hcoop.net>2008-06-08 14:25:27 -0400
commit33cf695e0ba9586f05242b7d3595c94ed5c99b98 (patch)
tree2107ff15033d8138633b227ee9e6323c7346b788 /src/source.sml
parent59cf4e73d9d6998ea4a83aa38c75c95ed462779f (diff)
Unification wildcards
Diffstat (limited to 'src/source.sml')
-rw-r--r--src/source.sml3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/source.sml b/src/source.sml
index 9b0e2a07..c76ebf0b 100644
--- a/src/source.sml
+++ b/src/source.sml
@@ -34,6 +34,7 @@ datatype kind' =
| KArrow of kind * kind
| KName
| KRecord of kind
+ | KWild
withtype kind = kind' located
@@ -57,6 +58,8 @@ datatype con' =
| CRecord of (con * con) list
| CConcat of con * con
+ | CWild of kind
+
withtype con = con' located
datatype exp' =