src/Pure/ML-Systems/ml_pretty.ML
author bulwahn
Tue, 03 Nov 2009 10:24:05 +0100
changeset 33403 a9b6497391b0
parent 30623 9ed1122d6cd2
child 38635 f76ad0771f67
permissions -rw-r--r--
recursively replacing abstractions by new definitions in the predicate compiler

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