File tree 3 files changed +14
-1
lines changed
3 files changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -110,6 +110,10 @@ let check_bs_attributes_inclusion =
110
110
None
111
111
)
112
112
113
+ let check_duplicated_labels = ref (fun _lbls ->
114
+ failwith " check_duplicated_label not implemented"
115
+ )
116
+
113
117
let rec deprecated_of_sig = function
114
118
| {psig_desc = Psig_attribute a } :: tl ->
115
119
begin match deprecated_of_attrs [a] with
Original file line number Diff line number Diff line change @@ -46,6 +46,10 @@ val check_bs_attributes_inclusion:
46
46
(Parsetree .attributes ->
47
47
Parsetree .attributes -> string -> (string * string ) option ) ref
48
48
49
+ val check_duplicated_labels :
50
+ (Parsetree .label_declaration list ->
51
+ string Asttypes .loc option
52
+ ) ref
49
53
val error_of_extension : Parsetree .extension -> Location .error
50
54
51
55
val warning_attribute : ?ppwarning : bool -> Parsetree .attribute -> unit
Original file line number Diff line number Diff line change @@ -222,13 +222,18 @@ let make_params env params =
222
222
223
223
let transl_labels env closed lbls =
224
224
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 (
225
230
let all_labels = ref StringSet. empty in
226
231
List. iter
227
232
(fun {pld_name = {txt =name ; loc} } ->
228
233
if StringSet. mem name ! all_labels then
229
234
raise(Error (loc, Duplicate_label name));
230
235
all_labels := StringSet. add name ! all_labels)
231
- lbls;
236
+ lbls) ;
232
237
let mk {pld_name =name ;pld_mutable =mut ;pld_type =arg ;pld_loc =loc ;
233
238
pld_attributes =attrs } =
234
239
Builtin_attributes. warning_scope attrs
You can’t perform that action at this time.
0 commit comments