summaryrefslogtreecommitdiff
path: root/src/source.sml
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adamc@hcoop.net>2008-08-14 18:35:08 -0400
committerGravatar Adam Chlipala <adamc@hcoop.net>2008-08-14 18:35:08 -0400
commit7bdc4cabdb8e5efbc4a194fe0bfe9442c7644798 (patch)
treece4be93140bacbd8900ff57affd5f866fbbf3ad0 /src/source.sml
parent5c9a5278b49ccf481468d5a766a8c4ab0cde2658 (diff)
Non-star SELECT
Diffstat (limited to 'src/source.sml')
-rw-r--r--src/source.sml4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/source.sml b/src/source.sml
index 4e4ddc54..de0c296d 100644
--- a/src/source.sml
+++ b/src/source.sml
@@ -35,6 +35,7 @@ datatype kind' =
| KName
| KRecord of kind
| KUnit
+ | KTuple of kind list
| KWild
withtype kind = kind' located
@@ -64,6 +65,9 @@ datatype con' =
| CUnit
+ | CTuple of con list
+ | CProj of con * int
+
| CWild of kind
withtype con = con' located