Module Sexplib.Sexp_with_layout

module List : sig ... end
module Make (Pos : sig ... end) : sig ... end
module Parsed : sig ... end
type t =
  1. | Atom of Sexplib.Src_pos.Relative.t * string * string option
  2. | List of Sexplib.Src_pos.Relative.t * t_or_comment list * Sexplib.Src_pos.Relative.t
and t_or_comment =
  1. | Sexp of t
  2. | Comment of comment
and comment =
  1. | Plain_comment of Sexplib.Src_pos.Relative.t * string
  2. | Sexp_comment of Sexplib.Src_pos.Relative.t * comment list * t
val sexp_of_t : t -> Sexplib.Type.t
val sexp_of_comment : comment -> Sexplib.Type.t
val sexp_of_t_or_comment : t_or_comment -> Sexplib.Type.t
val relativize : Parsed.t_or_comment -> t_or_comment
type pos = Sexplib.Src_pos.Relative.t = {
  1. row : int;
  2. col : int;
}
module Lexer : sig ... end
module Render : sig ... end
module Forget : sig ... end