summaryrefslogtreecommitdiff
path: root/src/core.sml
diff options
context:
space:
mode:
Diffstat (limited to 'src/core.sml')
-rw-r--r--src/core.sml4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core.sml b/src/core.sml
index ce14ac04..30bd8b76 100644
--- a/src/core.sml
+++ b/src/core.sml
@@ -35,6 +35,7 @@ datatype kind' =
| KName
| KRecord of kind
| KUnit
+ | KTuple of kind list
withtype kind = kind' located
@@ -57,6 +58,9 @@ datatype con' =
| CUnit
+ | CTuple of con list
+ | CProj of con * int
+
withtype con = con' located
datatype datatype_kind = datatype Elab.datatype_kind