summaryrefslogtreecommitdiff
path: root/src/explify.sml
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adamc@hcoop.net>2008-07-17 10:09:34 -0400
committerGravatar Adam Chlipala <adamc@hcoop.net>2008-07-17 10:09:34 -0400
commitdcfd6390610712e9d498cdb4e466eb932a6bb138 (patch)
tree83ba4c2e9b1d7a6ef837f323bed5a279b517fdb9 /src/explify.sml
parentc8dc6a0ab0a9f64a6d5bd1bfae94f04dc941e26d (diff)
Parsing and elaborating (non-mutual) 'val rec'
Diffstat (limited to 'src/explify.sml')
-rw-r--r--src/explify.sml1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/explify.sml b/src/explify.sml
index ecca21f8..2bab60df 100644
--- a/src/explify.sml
+++ b/src/explify.sml
@@ -111,6 +111,7 @@ fun explifyDecl (d, loc : EM.span) =
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)