summaryrefslogtreecommitdiff
path: root/src/mono.sml
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adam@chlipala.net>2014-08-17 13:07:56 -0400
committerGravatar Adam Chlipala <adam@chlipala.net>2014-08-17 13:07:56 -0400
commite230d565f1f0604eee2c964dab5374d07c24ed6d (patch)
treee8dd9defb6693cf3a9e153494da978d2391854c2 /src/mono.sml
parent4e6800f06759329f892ca8f40fcf50186b3785e1 (diff)
New phase: Dbmodecheck
Diffstat (limited to 'src/mono.sml')
-rw-r--r--src/mono.sml9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/mono.sml b/src/mono.sml
index 78740d70..1e402e57 100644
--- a/src/mono.sml
+++ b/src/mono.sml
@@ -1,4 +1,4 @@
-(* Copyright (c) 2008-2010, 2013, Adam Chlipala
+(* Copyright (c) 2008-2010, 2013-2014, Adam Chlipala
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@@ -162,6 +162,11 @@ datatype sidedness =
| ServerAndPull
| ServerAndPullAndPush
-type file = decl list * (int * sidedness) list
+datatype dbmode =
+ NoDb
+ | OneQuery
+ | AnyDb
+
+type file = decl list * (int * sidedness * dbmode) list
end