Module Sexp_pretty.Normalize

type t =
| Sexp of sexp * Base.string Base.list
| Comment of comment
and comment =
| Line_comment of Base.string
| Block_comment of Base.int * Base.string Base.list
| Sexp_comment of comment Base.list * sexp
and sexp =
| Atom of Base.string
| List of t Base.list
val of_sexp_or_comment : Config.t -> Sexplib.Sexp.With_layout.t_or_comment -> t