summaryrefslogtreecommitdiff
path: root/src/mono.sml
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adamc@hcoop.net>2008-09-02 13:09:54 -0400
committerGravatar Adam Chlipala <adamc@hcoop.net>2008-09-02 13:09:54 -0400
commit4d83cf46590e7c48581612fd9fe6218b896b89b8 (patch)
tree9fcd1257c4b88ede3b3c1675121221c89e46d60e /src/mono.sml
parent48a39b87c0f2b01c85e1bb78072387e30ab0f235 (diff)
Table declarations pushed to Cjr
Diffstat (limited to 'src/mono.sml')
-rw-r--r--src/mono.sml2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mono.sml b/src/mono.sml
index 3b6cc87e..cbe935c0 100644
--- a/src/mono.sml
+++ b/src/mono.sml
@@ -90,6 +90,8 @@ 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
+
+ | DTable of string * (string * typ) list
| DDatabase of string
withtype decl = decl' located