package js_of_ocaml-compiler

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module Js_of_ocaml_compiler.Source_mapSource

Sourcemodule Source_content : sig ... end
Sourcetype 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;
    }
Sourcemodule Offset : sig ... end
Sourcemodule Mappings : sig ... end
Sourcemodule Standard : sig ... end
Sourcemodule Index : sig ... end
Sourcetype t =
  1. | Standard of Standard.t
  2. | Index of Index.t
Sourceval to_string : t -> string
Sourceval to_file : t -> string -> unit
Sourceval of_string : string -> t
Sourceval of_file : string -> t
Sourceval invariant : t -> unit
Sourcetype info = {
  1. mappings : Mappings.decoded;
  2. sources : string list;
  3. names : string list;
}