Up
module
Source_map
:
sig
#
type
map = {
#
gen_line
: int
;
#
gen_col
: int
;
#
ori_source
: int
;
#
ori_line
: int
;
#
ori_col
: int
;
#
ori_name
: int option
;
}
#
type
mapping =
map
list
#
type
t = {
#
version
: int
;
#
file
: string
;
#
sourceroot
: string option
;
#
mutable
sources
: string list
;
#
mutable
sources_content
: string option list
;
#
mutable
names
: string list
;
#
mutable
mappings
:
mapping
;
}
#
val
expression :
t
->
Javascript
.
expression
end