package sexp_pretty

  1. Overview
  2. Docs
type t =
  1. | Sexp of sexp
  2. | Comment of comment
and comment =
  1. | Line_comment of Import.string
  2. | Block_comment of Import.int * Import.string Import.list
  3. | Sexp_comment of comment Import.list * sexp
and sexp =
  1. | Atom of Import.string
  2. | List of t Import.list