jon.recoil.org

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
val to_string : Js_of_ocaml_compiler.Source_map.t -> string
val to_file : ?rewrite_paths:bool -> Js_of_ocaml_compiler.Source_map.t -> string -> unit
val of_string : ?tmp_buf:Stdlib.Buffer.t -> string -> Js_of_ocaml_compiler.Source_map.t
val of_file : ?tmp_buf:Stdlib.Buffer.t -> string -> Js_of_ocaml_compiler.Source_map.t
val invariant : Js_of_ocaml_compiler.Source_map.t -> unit
val find_in_js_file : string -> Js_of_ocaml_compiler.Source_map.t option
type info = {
  1. mappings : Js_of_ocaml_compiler.Source_map.Mappings.decoded;
  2. sources : string list;
  3. names : string list;
}
module Encoding_spec : sig ... end