package protocell

  1. Overview
  2. Docs
type t = {
  1. path : int list;
  2. span : int list;
  3. leading_comments : string option;
  4. trailing_comments : string option;
  5. leading_detached_comments : string list;
}
val equal : t -> t -> Ppx_deriving_runtime.bool
val pp : Ppx_deriving_runtime.Format.formatter -> t -> Ppx_deriving_runtime.unit
val to_binary : t -> (string, [> Bin'.serialization_error ]) Stdlib.result
val of_binary : string -> (t, [> Bin'.deserialization_error ]) Stdlib.result
val to_text : t -> (string, [> Text'.serialization_error ]) Stdlib.result
val of_text : string -> (t, [> Text'.deserialization_error ]) Stdlib.result