diff src/cjr.sml @ 271:42dfb0d61cf0

'database' declaration threaded through compiler
author Adam Chlipala <adamc@hcoop.net>
date Tue, 02 Sep 2008 10:51:41 -0400
parents fac9fae654e2
children 09c66a30ef32
line wrap: on
line diff
--- a/src/cjr.sml	Tue Sep 02 10:31:16 2008 -0400
+++ b/src/cjr.sml	Tue Sep 02 10:51:41 2008 -0400
@@ -87,6 +87,7 @@
        | DVal of string * int * typ * exp
        | DFun of string * int * (string * typ) list * typ * exp
        | DFunRec of (string * int * (string * typ) list * typ * exp) list
+       | DDatabase of string
 
 withtype decl = decl' located