diff src/mono.sml @ 168:25b169416ea8

Storing datatype constructors in type references past monoize
author Adam Chlipala <adamc@hcoop.net>
date Tue, 29 Jul 2008 15:43:17 -0400
parents 6847741e1f5f
children eb3f9913bf31
line wrap: on
line diff
--- a/src/mono.sml	Tue Jul 29 15:25:42 2008 -0400
+++ b/src/mono.sml	Tue Jul 29 15:43:17 2008 -0400
@@ -32,7 +32,7 @@
 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