summaryrefslogtreecommitdiff
path: root/src/elab.sml
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adamc@hcoop.net>2009-02-24 12:01:24 -0500
committerGravatar Adam Chlipala <adamc@hcoop.net>2009-02-24 12:01:24 -0500
commit7865cb372d95c42542d59cbcf83ba541b0ab3f8a (patch)
tree9dd05f2dad9cc6d4e0e33af1e8f1cf0a1def9f15 /src/elab.sml
parentadcf93304e6fc100d0e714a898033d2a9033173c (diff)
Switch to TDisjoint from CDisjoint; still need to implement obligation generation at EDisjoint uses
Diffstat (limited to 'src/elab.sml')
-rw-r--r--src/elab.sml6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/elab.sml b/src/elab.sml
index 9ec3793e..3fed1918 100644
--- a/src/elab.sml
+++ b/src/elab.sml
@@ -49,21 +49,17 @@ datatype explicitness =
Explicit
| Implicit
-datatype auto_instantiate =
- Instantiate
- | LeaveAlone
-
datatype con' =
TFun of con * con
| TCFun of explicitness * string * kind * con
| TRecord of con
+ | TDisjoint of con * con * con
| CRel of int
| CNamed of int
| CModProj of int * string list * string
| CApp of con * con
| CAbs of string * kind * con
- | CDisjoint of auto_instantiate * con * con * con
| CKAbs of string * con
| CKApp of con * kind