package js_of_ocaml

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type map = {
  1. gen_line : int;
  2. gen_col : int;
  3. ori_source : int;
  4. ori_line : int;
  5. ori_col : int;
  6. ori_name : int option;
}
type mapping = map list
type t = {
  1. version : int;
  2. file : string;
  3. sourceroot : string option;
  4. mutable sources : string list;
  5. mutable sources_content : string option list option;
  6. mutable names : string list;
  7. mutable mappings : mapping;
}
val json : t -> Yojson.Basic.json
val of_json : Yojson.Basic.json -> t
val merge : (int * string * t) list -> t option