package sexplib

  1. Overview
  2. Docs
type t =
  1. | Atom of Pos.t * string * string option
  2. | List of Pos.t * t_or_comment list * Pos.t

S-expressions annotated with relative source positions and comments

and t_or_comment =
  1. | Sexp of t
  2. | Comment of comment
and comment =
  1. | Plain_comment of Pos.t * string
  2. | Sexp_comment of Pos.t * comment list * t
val sexp_of_t : t -> Type.t
val sexp_of_comment : comment -> Type.t
val sexp_of_t_or_comment : t_or_comment -> Type.t