@@ -61656,7 +61656,6 @@ type attr =
61656
61656
| Arg_cst of cst
61657
61657
| Fn_uncurry_arity of int (* annotated with [@bs.uncurry ] or [@bs.uncurry 2]*)
61658
61658
(* maybe we can improve it as a combination of {!Asttypes.constant} and tuple *)
61659
- | Extern_arg_array
61660
61659
| Extern_unit
61661
61660
| Nothing
61662
61661
| Ignore
@@ -61727,7 +61726,6 @@ type attr =
61727
61726
| Arg_cst of cst
61728
61727
| Fn_uncurry_arity of int (* annotated with [@bs.uncurry ] or [@bs.uncurry 2]*)
61729
61728
(* maybe we can improve it as a combination of {!Asttypes.constant} and tuple *)
61730
- | Extern_arg_array
61731
61729
| Extern_unit
61732
61730
| Nothing
61733
61731
| Ignore
@@ -94950,7 +94948,7 @@ let ocaml_to_js_eff
94950
94948
Js_of_lam_variant.eval_as_unwrap raw_arg
94951
94949
in
94952
94950
Splice1 single_arg,[]
94953
- | Nothing | Extern_arg_array -> Splice1 arg, []
94951
+ | Nothing -> Splice1 arg, []
94954
94952
94955
94953
94956
94954
@@ -106218,7 +106216,7 @@ let process_obj
106218
106216
arg_type },
106219
106217
arg_types, (* ignored in [arg_types], reserved in [result_types] *)
106220
106218
((name , [], new_ty) :: result_types)
106221
- | Nothing | Extern_arg_array ->
106219
+ | Nothing ->
106222
106220
let s = (Lam_methname.translate ~loc name) in
106223
106221
{arg_label = External_arg_spec.label s None ; arg_type },
106224
106222
{param_type with ty = new_ty}::arg_types,
@@ -106251,7 +106249,7 @@ let process_obj
106251
106249
| Ignore ->
106252
106250
External_arg_spec.empty_kind arg_type,
106253
106251
param_type::arg_types, result_types
106254
- | Nothing | Extern_arg_array ->
106252
+ | Nothing ->
106255
106253
let s = (Lam_methname.translate ~loc name) in
106256
106254
{arg_label = External_arg_spec.optional s; arg_type},
106257
106255
param_type :: arg_types,
0 commit comments