summaryrefslogtreecommitdiff
path: root/src/pretty_print.ml
diff options
context:
space:
mode:
authorKathy Gray2014-07-30 18:49:49 +0100
committerKathy Gray2014-07-30 18:49:49 +0100
commit8e6d2121d7e02eef90465f9fc21aa605c14bb057 (patch)
tree43ca591575433a00822fe1e2e9052421015369f8 /src/pretty_print.ml
parent7c0435413b58eb82a22602d4a3b65f45323dc03b (diff)
working dec vectors
Diffstat (limited to 'src/pretty_print.ml')
-rw-r--r--src/pretty_print.ml2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/pretty_print.ml b/src/pretty_print.ml
index f4729814..40b6d60f 100644
--- a/src/pretty_print.ml
+++ b/src/pretty_print.ml
@@ -416,6 +416,7 @@ let pp_lem_default ppf (DT_aux(df,l)) =
match df with
| DT_kind(bk,var) -> fprintf ppf "@[<0>(%a %a %a)@]" kwd "DT_kind" pp_lem_bkind bk pp_lem_var var
| DT_typ(ts,id) -> fprintf ppf "@[<0>(%a %a %a)@]" kwd "DT_typ" pp_lem_typscm ts pp_lem_id id
+ | DT_order(ord) -> fprintf ppf "@[<0>(DT_order %a)@]" pp_lem_ord ord
in
fprintf ppf "@[<0>(DT_aux %a %a)@]" print_de df pp_lem_l l
@@ -951,6 +952,7 @@ let doc_exp, doc_let =
let doc_default (DT_aux(df,_)) = match df with
| DT_kind(bk,v) -> separate space [string "default"; doc_bkind bk; doc_var v]
| DT_typ(ts,id) -> separate space [string "default"; doc_typscm ts; doc_id id]
+ | DT_order(ord) -> separate space [string "default"; string "order"; doc_ord ord]
let doc_spec (VS_aux(v,_)) = match v with
| VS_val_spec(ts,id) ->