summaryrefslogtreecommitdiff
path: root/src/source.sml
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adamc@hcoop.net>2008-07-01 15:58:02 -0400
committerGravatar Adam Chlipala <adamc@hcoop.net>2008-07-01 15:58:02 -0400
commitcdc1211c43e9073a4d03472ffb549c67df281cea (patch)
tree119cb9eae8a53423d4383f3e627d8de4999c6e78 /src/source.sml
parent73b8b2cf8afd5cc8969b3bd4d2c238d9c453e8fd (diff)
Constraints in modules
Diffstat (limited to 'src/source.sml')
-rw-r--r--src/source.sml3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/source.sml b/src/source.sml
index 0b168dd0..4aea002e 100644
--- a/src/source.sml
+++ b/src/source.sml
@@ -75,6 +75,7 @@ datatype sgn_item' =
| SgiStr of string * sgn
| SgiSgn of string * sgn
| SgiInclude of sgn
+ | SgiConstraint of con * con
and sgn' =
SgnConst of sgn_item list
@@ -110,6 +111,8 @@ datatype decl' =
| DStr of string * sgn option * str
| DFfiStr of string * sgn
| DOpen of string * string list
+ | DConstraint of con * con
+ | DOpenConstraints of string * string list
and str' =
StrConst of decl list