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