Skip to content

Commit 7b77d9b

Browse files
committed
fix
1 parent 2c43fbb commit 7b77d9b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

compiler/lib/source_map.ml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -542,7 +542,6 @@ end
542542
type t =
543543
[ `Standard of Standard.t
544544
| `Index of Index.t
545-
| `Url of Url.t
546545
]
547546

548547
let of_json = function

compiler/lib/source_map.mli

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff 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
}
112114
end
113115

114116
type t =
115117
[ `Standard of Standard.t
116118
| `Index of Index.t
117-
| `Url of Url.t
118119
]
119120

120121
val to_string : t -> string

0 commit comments

Comments
 (0)