summaryrefslogtreecommitdiff
path: root/src/mono.sml
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adamc@hcoop.net>2008-07-17 10:38:03 -0400
committerGravatar Adam Chlipala <adamc@hcoop.net>2008-07-17 10:38:03 -0400
commit462c9d472ebe1a585e3bddb103a3f7cf1cdc64e5 (patch)
treec57ef255d292387fa8cff95182d164437f64b3e5 /src/mono.sml
parente3313edc92a73932ff57b1c803fe7e408283406f (diff)
Tagging (non-mutual) 'val rec'
Diffstat (limited to 'src/mono.sml')
-rw-r--r--src/mono.sml1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mono.sml b/src/mono.sml
index a1ce85c3..22a5a8e0 100644
--- a/src/mono.sml
+++ b/src/mono.sml
@@ -61,6 +61,7 @@ withtype exp = exp' located
datatype decl' =
DVal of string * int * typ * exp * string
+ | DValRec of (string * int * typ * exp * string) list
| DExport of string * int * typ list
withtype decl = decl' located