package ocaml-base-compiler

  1. Overview
  2. Docs
type item = private {
  1. dinfo_file : string;
  2. dinfo_line : int;
  3. dinfo_char_start : int;
  4. dinfo_char_end : int;
}
type t = item list
val none : t
val is_none : t -> bool
val to_string : t -> string
val from_location : Location.t -> t
val to_location : t -> Location.t
val concat : t -> t -> t
val inline : Location.t -> t -> t
val compare : t -> t -> int
val hash : t -> int
val print_compact : Format.formatter -> t -> unit