summaryrefslogtreecommitdiff
path: root/src/cjr_print.sml
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adamc@hcoop.net>2009-09-09 08:15:46 -0400
committerGravatar Adam Chlipala <adamc@hcoop.net>2009-09-09 08:15:46 -0400
commit3b86930c9adf12117a7cc600a20288020e2660f5 (patch)
tree1df04b9ac5d1ea383a6c6c572d2a707bd3ceee69 /src/cjr_print.sml
parent2b5e957c78d47ae6d66ee2f70435b827d1644a4f (diff)
Find chances to use mstrcat()
Diffstat (limited to 'src/cjr_print.sml')
-rw-r--r--src/cjr_print.sml18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/cjr_print.sml b/src/cjr_print.sml
index 0fd6339d..c6406cef 100644
--- a/src/cjr_print.sml
+++ b/src/cjr_print.sml
@@ -1468,6 +1468,24 @@ fun p_exp' par env (e, loc) =
| EApp ((EReturnBlob {blob, mimeType, t = (TFun (_, ran), _)}, loc), _) =>
p_exp env (EReturnBlob {blob = blob, mimeType = mimeType, t = ran}, loc)
+ | EFfiApp ("Basis", "strcat", [e1, e2]) =>
+ let
+ fun flatten e =
+ case #1 e of
+ EFfiApp ("Basis", "strcat", [e1, e2]) => flatten e1 @ flatten e2
+ | _ => [e]
+ in
+ case flatten e1 @ flatten e2 of
+ [e1, e2] => box [string "uw_Basis_strcat(ctx, ",
+ p_exp env e1,
+ string ",",
+ p_exp env e2,
+ string ")"]
+ | es => box [string "uw_Basis_mstrcat(ctx, ",
+ p_list (p_exp env) es,
+ string ", NULL)"]
+ end
+
| EFfiApp (m, x, []) => box [string "uw_",
p_ident m,
string "_",