Module Js_of_ocaml_compiler.Source_map

module Source_content : sig ... end
type map =
  1. | Gen of {
    1. gen_line : int;
    2. gen_col : int;
    }
  2. | Gen_Ori of {
    1. gen_line : int;
    2. gen_col : int;
    3. ori_source : int;
    4. ori_line : int;
    5. ori_col : int;
    }
  3. | Gen_Ori_Name of {
    1. gen_line : int;
    2. gen_col : int;
    3. ori_source : int;
    4. ori_line : int;
    5. ori_col : int;
    6. ori_name : int;
    }
module Offset : sig ... end
module Mappings : sig ... end
module Standard : sig ... end
module Index : sig ... end
type t =
  1. | Standard of Standard.t
  2. | Index of Index.t
val to_string : t -> string
val to_file : ?rewrite_paths:bool -> t -> string -> unit
val of_string : ?tmp_buf:Stdlib.Buffer.t -> string -> t
val of_file : ?tmp_buf:Stdlib.Buffer.t -> string -> t
val invariant : t -> unit
val find_in_js_file : string -> t option
type info = {
  1. mappings : Mappings.decoded;
  2. sources : string list;
  3. names : string list;
}
module Encoding_spec : sig ... end