diff options
author | Adam Chlipala <adamc@hcoop.net> | 2008-09-02 10:51:41 -0400 |
---|---|---|
committer | Adam Chlipala <adamc@hcoop.net> | 2008-09-02 10:51:41 -0400 |
commit | b4398c433195b75d5e03d0774b1128fae14e9f41 (patch) | |
tree | 70e65dddc4c89b8cd1e13fce0d0c2ce21f50d67a /src/mono.sml | |
parent | 8a494ef37c4f4f7e15bbf173f44f81d12a60b91b (diff) |
'database' declaration threaded through compiler
Diffstat (limited to 'src/mono.sml')
-rw-r--r-- | src/mono.sml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mono.sml b/src/mono.sml index ae1b95dc..3b6cc87e 100644 --- a/src/mono.sml +++ b/src/mono.sml @@ -90,6 +90,7 @@ datatype decl' = | DVal of string * int * typ * exp * string | DValRec of (string * int * typ * exp * string) list | DExport of Core.export_kind * string * int * typ list + | DDatabase of string withtype decl = decl' located |