Skip to content

Commit 5fcbc70

Browse files
committed
[compiler] allow customized duplicate label checking
1 parent c8551a6 commit 5fcbc70

File tree

3 files changed

+14
-1
lines changed

3 files changed

+14
-1
lines changed

parsing/builtin_attributes.ml

+4
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,10 @@ let check_bs_attributes_inclusion =
110110
None
111111
)
112112

113+
let check_duplicated_labels = ref (fun _lbls ->
114+
failwith "check_duplicated_label not implemented"
115+
)
116+
113117
let rec deprecated_of_sig = function
114118
| {psig_desc = Psig_attribute a} :: tl ->
115119
begin match deprecated_of_attrs [a] with

parsing/builtin_attributes.mli

+4
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,10 @@ val check_bs_attributes_inclusion:
4646
(Parsetree.attributes ->
4747
Parsetree.attributes -> string -> (string*string) option ) ref
4848

49+
val check_duplicated_labels:
50+
(Parsetree.label_declaration list ->
51+
string Asttypes.loc option
52+
) ref
4953
val error_of_extension: Parsetree.extension -> Location.error
5054

5155
val warning_attribute: ?ppwarning:bool -> Parsetree.attribute -> unit

typing/typedecl.ml

+6-1
Original file line numberDiff line numberDiff line change
@@ -222,13 +222,18 @@ let make_params env params =
222222

223223
let transl_labels env closed lbls =
224224
assert (lbls <> []);
225+
if !Clflags.bs_only then
226+
match !Builtin_attributes.check_duplicated_labels lbls with
227+
| None -> ()
228+
| Some {loc;txt=name} -> raise (Error(loc,Duplicate_label name))
229+
else (
225230
let all_labels = ref StringSet.empty in
226231
List.iter
227232
(fun {pld_name = {txt=name; loc}} ->
228233
if StringSet.mem name !all_labels then
229234
raise(Error(loc, Duplicate_label name));
230235
all_labels := StringSet.add name !all_labels)
231-
lbls;
236+
lbls);
232237
let mk {pld_name=name;pld_mutable=mut;pld_type=arg;pld_loc=loc;
233238
pld_attributes=attrs} =
234239
Builtin_attributes.warning_scope attrs

0 commit comments

Comments
 (0)