File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 542
542
type t =
543
543
[ `Standard of Standard .t
544
544
| `Index of Index .t
545
- | `Url of Url .t
546
545
]
547
546
548
547
let of_json = function
Original file line number Diff line number Diff line change @@ -105,16 +105,17 @@ module Index : sig
105
105
type nonrec t =
106
106
{ version : int
107
107
; file : string
108
- ; sections : (offset * [ `Map of Standard .t | `Url of Url .t ]) list
108
+ ; sections : (offset * [ `Map of Standard .t ]) list
109
109
(* * List of [(offset, map)] pairs. The sourcemap spec allows for [map] to be
110
- either a sourcemap object or a URL. *)
110
+ either a sourcemap object or a URL, but we don't need to generate
111
+ composite sourcemaps with URLs for now, and it is therefore not
112
+ implemented. *)
111
113
}
112
114
end
113
115
114
116
type t =
115
117
[ `Standard of Standard .t
116
118
| `Index of Index .t
117
- | `Url of Url .t
118
119
]
119
120
120
121
val to_string : t -> string
You can’t perform that action at this time.
0 commit comments