added possibility to register datatypes as codatatypes in Nitpick;
this is useful if the datatype is used only as a means to define the codatatype
(* Title: Pure/ML-Systems/ml_pretty.ML
Author: Makarius
Raw datatype for ML pretty printing.
*)
structure ML_Pretty =
struct
datatype pretty =
Block of (string * string) * pretty list * int |
String of string * int |
Break of bool * int;
end;