aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core.sml
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adamc@hcoop.net>2008-07-17 10:23:04 -0400
committerGravatar Adam Chlipala <adamc@hcoop.net>2008-07-17 10:23:04 -0400
commite3313edc92a73932ff57b1c803fe7e408283406f (patch)
tree285b8ca2c5c71dfb0c48b0b8e56727cf37592129 /src/core.sml
parent1e03bdf0b6f423870abcf5e54ae7f2bdf08e3e49 (diff)
Corifying (non-mutual) 'val rec'
Diffstat (limited to 'src/core.sml')
-rw-r--r--src/core.sml1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core.sml b/src/core.sml
index 69eafd33..448113cc 100644
--- a/src/core.sml
+++ b/src/core.sml
@@ -83,6 +83,7 @@ withtype exp = exp' located
datatype decl' =
DCon of string * int * kind * con
| DVal of string * int * con * exp * string
+ | DValRec of (string * int * con * exp * string) list
| DExport of int
withtype decl = decl' located