From 9e860c86c7d9c763deb9d51490a6766d9c72ed25 Mon Sep 17 00:00:00 2001 From: Adam Chlipala Date: Thu, 24 Jul 2008 10:09:21 -0400 Subject: Record cut --- src/expl_print.sml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) (limited to 'src/expl_print.sml') diff --git a/src/expl_print.sml b/src/expl_print.sml index 2c4e7c89..58508097 100644 --- a/src/expl_print.sml +++ b/src/expl_print.sml @@ -237,6 +237,27 @@ fun p_exp' par env (e, loc) = box [p_exp' true env e, string ".", p_con' true env c] + | ECut (e, c, {field, rest}) => + parenIf par (if !debug then + box [p_exp' true env e, + space, + string "--", + space, + p_con' true env c, + space, + string "[", + p_con env field, + space, + string " in ", + space, + p_con env rest, + string "]"] + else + box [p_exp' true env e, + space, + string "--", + space, + p_con' true env c]) | EFold _ => string "fold" | EWrite e => box [string "write(", -- cgit v1.2.3