package js_of_ocaml-compiler

  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 merge : (int * t) list -> t option
val mapping_of_string : string -> mapping
val string_of_mapping : mapping -> string
val empty : filename:string -> t