Module JS_Parser.Loc

type file_key
type position = {
  1. line : int;
  2. column : int;
}
type t = {
  1. source : file_key option;
  2. start : position;
  3. _end : position;
}
val none : t
val file_key_to_string : file_key -> string
val pp : Stdlib.Format.formatter -> t -> unit