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 542542type t =
543543 [ `Standard of Standard .t
544544 | `Index of Index .t
545- | `Url of Url .t
546545 ]
547546
548547let of_json = function
Original file line number Diff line number Diff line change @@ -105,16 +105,17 @@ module Index : sig
105105 type nonrec t =
106106 { version : int
107107 ; file : string
108- ; sections : (offset * [ `Map of Standard .t | `Url of Url .t ]) list
108+ ; sections : (offset * [ `Map of Standard .t ]) list
109109 (* * 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. *)
111113 }
112114end
113115
114116type t =
115117 [ `Standard of Standard .t
116118 | `Index of Index .t
117- | `Url of Url .t
118119 ]
119120
120121val to_string : t -> string
You can’t perform that action at this time.
0 commit comments