reason
Reason_comment
reason.cmdliner
reason.easy_format
reason.ocaml-migrate-parsetree
reason.refmt-lib
type category =
| EndOfLine
| SingleLine
| Regular
val string_of_category : category -> string
type t = {
location : Location.t;
category : category;
text : string;
}
val category : t -> category
val location : t -> Location.t
val dump : Format.formatter -> t -> unit
val dump_list : Format.formatter -> t list -> unit
val wrap : t -> string
val is_doc : t -> bool
val make : location:Location.t -> category -> string -> t
val isLineComment : t -> bool