You can search for identifiers within the package.
in-package search v0.2.0
type code = {
code : int;
name : string;
}
type source =
| Code of code
| Alert of string
type lines =
| Single of int
| Range of int * int
type loc = {
chars : (int * int) option;
lines : lines;
path : string;
type severity =
| Error of source option
| Warning of code
| Alert of {
source : string;
type report = {
loc : loc;
severity : severity;
message : string;
related : (loc * string) list;
val dyn_of_report : report -> Dyn.t
val dyn_of_raw : [ `Loc of loc | `Message of string ] list -> Dyn.t
val parse_raw : string -> [ `Loc of loc | `Message of string ] list
val parse : string -> report list