aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/mono.sml
diff options
context:
space:
mode:
authorGravatar Ziv Scully <ziv@mit.edu>2015-09-13 17:02:17 -0400
committerGravatar Ziv Scully <ziv@mit.edu>2015-09-13 17:02:17 -0400
commit68879bbb4bf58e4709c96ba6904071ce5d24a906 (patch)
tree163346ebe21b265592fb687e4f55af494880e15c /src/mono.sml
parent46fe4e62ddefd8f79f4a29f7a273f585436d3c85 (diff)
Make Mono.file a record for readability upon extension.
Diffstat (limited to 'src/mono.sml')
-rw-r--r--src/mono.sml2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mono.sml b/src/mono.sml
index 5185e48c..94c47814 100644
--- a/src/mono.sml
+++ b/src/mono.sml
@@ -168,6 +168,6 @@ datatype dbmode =
| OneQuery
| AnyDb
-type file = decl list * (int * sidedness * dbmode) list
+type file = {decls : decl list, sideInfo : (int * sidedness * dbmode) list}
end