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;
}
type t = {version : int;file : string;sourceroot : string option;sources : string list;sources_content : string option list option;names : string list;mappings : mapping;
}val filter_map : t -> f:(int -> int option) -> tval merge : t list -> t optionval mapping_of_string : string -> mappingval string_of_mapping : mapping -> stringval empty : filename:string -> t