diff options
author | Adam Chlipala <adamc@hcoop.net> | 2009-02-24 12:01:24 -0500 |
---|---|---|
committer | Adam Chlipala <adamc@hcoop.net> | 2009-02-24 12:01:24 -0500 |
commit | 7865cb372d95c42542d59cbcf83ba541b0ab3f8a (patch) | |
tree | 9dd05f2dad9cc6d4e0e33af1e8f1cf0a1def9f15 /src/explify.sml | |
parent | adcf93304e6fc100d0e714a898033d2a9033173c (diff) |
Switch to TDisjoint from CDisjoint; still need to implement obligation generation at EDisjoint uses
Diffstat (limited to 'src/explify.sml')
-rw-r--r-- | src/explify.sml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/explify.sml b/src/explify.sml index b2564789..f9f58c65 100644 --- a/src/explify.sml +++ b/src/explify.sml @@ -52,7 +52,7 @@ fun explifyCon (c, loc) = case c of L.TFun (t1, t2) => (L'.TFun (explifyCon t1, explifyCon t2), loc) | L.TCFun (_, x, k, t) => (L'.TCFun (x, explifyKind k, explifyCon t), loc) - | L.CDisjoint (_, _, _, c) => explifyCon c + | L.TDisjoint (_, _, t) => explifyCon t | L.TRecord c => (L'.TRecord (explifyCon c), loc) | L.CRel n => (L'.CRel n, loc) |