src/Pure/ML-Systems/ml_pretty.ML
author blanchet
Thu, 05 Nov 2009 19:06:35 +0100
changeset 33581 e1e77265fb1d
parent 30623 9ed1122d6cd2
child 38635 f76ad0771f67
permissions -rw-r--r--
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;