Parsexp.Cst
Concrete syntax tree of s-expressions
This module exposes a type that describe the full contents of a source file containing s-expressions.
One can use this type to do low-level rewriting of s-expression files.
type t =
| Atom of {
} | ||||
| List of {
} |
and comment =
| Plain_comment of {
} | (* Line or block comment *) | ||
| Sexp_comment of {
} |
val compare_t_or_comment : t_or_comment -> t_or_comment -> int
val sexp_of_t : t -> Sexplib0.Sexp.t
val sexp_of_t_or_comment : t_or_comment -> Sexplib0.Sexp.t
val sexp_of_comment : comment -> Sexplib0.Sexp.t
module Forget : sig ... end