Module File.Location

type t = {
  1. filename : Name.t;
  2. line_number : int;
  3. line_start : int;
  4. start_pos : int;
  5. end_pos : int;
}
val t_of_sexp : Sexplib0__.Sexp.t -> t
val sexp_of_t : t -> Sexplib0__.Sexp.t
val compare : t -> t -> int
val beginning_of_file : Name.t -> t
val of_source_code_position : Lexing.position -> t
val equal : t -> t -> bool