src/Pure/ML-Systems/ml_pretty.ML
author wenzelm
Sat, 06 Jun 2009 19:58:10 +0200
changeset 31471 e3987b32e401
parent 30623 9ed1122d6cd2
child 38635 f76ad0771f67
permissions -rw-r--r--
use_text: pass file name to compiler, tuned;

(*  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;