Module Js_of_ocaml_compiler.Source_map
type map =
| Gen of {
gen_line : int;
gen_col : int;
}
| Gen_Ori of {
gen_line : int;
gen_col : int;
ori_source : int;
ori_line : int;
ori_col : int;
}
| Gen_Ori_Name of {
gen_line : int;
gen_col : int;
ori_source : int;
ori_line : int;
ori_col : int;
ori_name : int;
}
module Index : sig ... end
val to_string : t -> string
val to_file : t -> string -> unit
val of_string : string -> t
val of_file : string -> t
val invariant : t -> unit
type info = {
mappings : Mappings.decoded;
sources : string list;
names : string list;
}