diff options
author | Adam Chlipala <adamc@hcoop.net> | 2008-06-10 15:56:33 -0400 |
---|---|---|
committer | Adam Chlipala <adamc@hcoop.net> | 2008-06-10 15:56:33 -0400 |
commit | 0b48781249e7062928ff78ae3469a508a3e31eaa (patch) | |
tree | 9e6bdf99508109633f198c8a01948c165cad3b86 /src/mono_print.sml | |
parent | be45a4a950e01689219ebc5032f53f66b012f660 (diff) |
Closure conversion
Diffstat (limited to 'src/mono_print.sml')
-rw-r--r-- | src/mono_print.sml | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/src/mono_print.sml b/src/mono_print.sml index a23296f9..b8b73e17 100644 --- a/src/mono_print.sml +++ b/src/mono_print.sml @@ -77,17 +77,17 @@ fun p_exp' par env (e, _) = | EApp (e1, e2) => parenIf par (box [p_exp env e1, space, p_exp' true env e2]) - | EAbs (x, t, e) => parenIf par (box [string "fn", - space, - string x, - space, - string ":", - space, - p_typ env t, - space, - string "=>", - space, - p_exp (E.pushERel env x t) e]) + | EAbs (x, t, _, e) => parenIf par (box [string "fn", + space, + string x, + space, + string ":", + space, + p_typ env t, + space, + string "=>", + space, + p_exp (E.pushERel env x t) e]) | ERecord xes => box [string "{", p_list (fn (x, e) => |