File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -174,8 +174,8 @@ let assemble_args_no_splice call_loc ffi
174
174
match labels, args with
175
175
| [] , _
176
176
-> assert (args = [] ) ; empty_pair
177
- | { arg_label = Empty ; arg_type = Arg_cst cst } :: labels, args
178
- | { arg_label = Label ; arg_type = Arg_cst cst } :: labels , args ->
177
+ | { arg_label = Empty | Label ; arg_type = Arg_cst cst } :: labels, args
178
+ ->
179
179
let accs, eff = aux labels args in
180
180
Lam_compile_const. translate_arg_cst cst :: accs, eff
181
181
| {arg_label = Empty | Label | Optional as arg_label ; arg_type } ::labels,
@@ -201,8 +201,8 @@ let assemble_args_has_splice call_loc ffi (arg_types : specs) (args : exprs)
201
201
let rec aux (labels : specs ) (args : exprs ) =
202
202
match labels, args with
203
203
| [] , _ -> assert (args = [] ); empty_pair
204
- | { arg_label = Empty ; arg_type = Arg_cst cst} :: labels , args
205
- | { arg_label = Label ; arg_type = Arg_cst cst } :: labels , args ->
204
+ | { arg_label = Empty | Label ; arg_type = Arg_cst cst} :: labels , args
205
+ ->
206
206
let accs, eff = aux labels args in
207
207
Lam_compile_const. translate_arg_cst cst :: accs, eff
208
208
| ({arg_label = Empty | Label | Optional as arg_label; arg_type }) ::labels,
You can’t perform that action at this time.
0 commit comments