summaryrefslogtreecommitdiff
path: root/src/mono.sml
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adamc@hcoop.net>2008-07-29 15:43:17 -0400
committerGravatar Adam Chlipala <adamc@hcoop.net>2008-07-29 15:43:17 -0400
commit846cf3f1661a8c91e40d80382db28c76dceaf1f0 (patch)
treefe42c0c78660d50832719e1ae9fd9cda2d7e603f /src/mono.sml
parentcb3b3831a07d6674a5fa02e3e8a1e4329b58cb34 (diff)
Storing datatype constructors in type references past monoize
Diffstat (limited to 'src/mono.sml')
-rw-r--r--src/mono.sml2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mono.sml b/src/mono.sml
index cdfcecd3..b1636775 100644
--- a/src/mono.sml
+++ b/src/mono.sml
@@ -32,7 +32,7 @@ type 'a located = 'a ErrorMsg.located
datatype typ' =
TFun of typ * typ
| TRecord of (string * typ) list
- | TNamed of int
+ | TDatatype of int * (string * int * typ option) list
| TFfi of string * string
withtype typ = typ' located