summaryrefslogtreecommitdiff
path: root/src/source_print.sml
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adamc@hcoop.net>2008-07-01 12:10:46 -0400
committerGravatar Adam Chlipala <adamc@hcoop.net>2008-07-01 12:10:46 -0400
commit7628e1d8f7f8199531c9bc08a774c9a9e2bc5d63 (patch)
tree3d434c77c5ec6ac3660a553072e1c1ba26cd4665 /src/source_print.sml
parentd28cad7cc5881018717c7e875c99c51469da9d44 (diff)
Disjointness assumptions
Diffstat (limited to 'src/source_print.sml')
-rw-r--r--src/source_print.sml9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/source_print.sml b/src/source_print.sml
index 80b077d0..3e83dbe8 100644
--- a/src/source_print.sml
+++ b/src/source_print.sml
@@ -111,6 +111,15 @@ fun p_con' par (c, _) =
string "=>",
space,
p_con c])
+ | CDisjoint (c1, c2, c3) => parenIf par (box [p_con c1,
+ space,
+ string "~",
+ space,
+ p_con c2,
+ space,
+ string "=>",
+ space,
+ p_con c3])
| CName s => box [string "#", string s]