Mercurial > urweb
diff src/explify.sml @ 123:e3041657d653
Parsing and elaborating (non-mutual) 'val rec'
author | Adam Chlipala <adamc@hcoop.net> |
---|---|
date | Thu, 17 Jul 2008 10:09:34 -0400 |
parents | 813e5a52063d |
children | 541282b81454 |
line wrap: on
line diff
--- a/src/explify.sml Sun Jul 13 20:25:25 2008 -0400 +++ b/src/explify.sml Thu Jul 17 10:09:34 2008 -0400 @@ -111,6 +111,7 @@ case d of L.DCon (x, n, k, c) => SOME (L'.DCon (x, n, explifyKind k, explifyCon c), loc) | L.DVal (x, n, t, e) => SOME (L'.DVal (x, n, explifyCon t, explifyExp e), loc) + | L.DValRec _ => raise Fail "Expliofy DValRec" | L.DSgn (x, n, sgn) => SOME (L'.DSgn (x, n, explifySgn sgn), loc) | L.DStr (x, n, sgn, str) => SOME (L'.DStr (x, n, explifySgn sgn, explifyStr str), loc)