summaryrefslogtreecommitdiff
path: root/src/source_print.sml
diff options
context:
space:
mode:
Diffstat (limited to 'src/source_print.sml')
-rw-r--r--src/source_print.sml19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/source_print.sml b/src/source_print.sml
index 41051c81..8fc27106 100644
--- a/src/source_print.sml
+++ b/src/source_print.sml
@@ -287,6 +287,13 @@ fun p_sgn_item (sgi, _) =
| SgiInclude sgn => box [string "include",
space,
p_sgn sgn]
+ | SgiConstraint (c1, c2) => box [string "constraint",
+ space,
+ p_con c1,
+ space,
+ string "~",
+ space,
+ p_con c2]
and p_sgn (sgn, _) =
case sgn of
@@ -398,6 +405,18 @@ fun p_decl ((d, _) : decl) =
| DOpen (m, ms) => box [string "open",
space,
p_list_sep (string ".") string (m :: ms)]
+ | DConstraint (c1, c2) => box [string "constraint",
+ space,
+ p_con c1,
+ space,
+ string "~",
+ space,
+ p_con c2]
+ | DOpenConstraints (m, ms) => box [string "open",
+ space,
+ string "constraints",
+ space,
+ p_list_sep (string ".") string (m :: ms)]
and p_str (str, _) =
case str of