@@ -679,23 +679,6 @@ let rec unsafe_mapper : Ast_mapper.mapper =
679
679
| Pexp_extension ({txt = " bs.debugger" ; loc} , payload)
680
680
-> handle_debugger loc payload
681
681
(* * End rewriting *)
682
- (* | Pexp_extension *)
683
- (* ({txt = "uncurry";loc}, *)
684
- (* PStr *)
685
- (* [{ *)
686
- (* pstr_desc = *)
687
- (* Pstr_eval *)
688
- (* ({pexp_desc = *)
689
- (* Pexp_fun ("", None, pat , *)
690
- (* body)}, *)
691
- (* _)}]) *)
692
- (* -> *)
693
- (* begin match body.pexp_desc with *)
694
- (* | Pexp_fun _ -> *)
695
- (* Location.raise_errorf ~loc *)
696
- (* "`fun %%uncurry (param0, param1) -> ` instead of `fun %%uncurry param0 param1 ->` " *)
697
- (* | _ -> handle_uncurry_generation loc pat body e mapper *)
698
- (* end *)
699
682
| Pexp_fun (" " , None , pat , body)
700
683
->
701
684
let loc = e.pexp_loc in
@@ -710,12 +693,12 @@ let rec unsafe_mapper : Ast_mapper.mapper =
710
693
Location. raise_errorf ~loc
711
694
{| `fun [@ uncurry] (param0, param1) -> `
712
695
instead of `fun [@ uncurry] param0 param1 ->` | }
713
- | _ ->
714
- handle_uncurry_generation loc pat body
715
- {e with pexp_attributes = attrs } mapper
716
- end
717
-
696
+ | _ ->
697
+ handle_uncurry_generation loc pat body
698
+ {e with pexp_attributes = attrs } mapper
699
+ end
718
700
end
701
+
719
702
| Pexp_apply ({pexp_desc = Pexp_ident {txt = Lident " #@" ; loc}},
720
703
[(" " , fn);
721
704
(" " , pat)])
@@ -752,6 +735,18 @@ let rec unsafe_mapper : Ast_mapper.mapper =
752
735
) )
753
736
])
754
737
-> handle_obj_property loc obj name e mapper
738
+ | Pexp_apply (fn,
739
+ [(" " , pat)]) ->
740
+ let loc = e.pexp_loc in
741
+ begin match Ext_list. exclude_with_fact (function
742
+ | {Location. txt = "uncurry" ; _} , _ -> true
743
+ | _ -> false ) e.pexp_attributes with
744
+ | None , _ -> Ast_mapper. default_mapper.expr mapper e
745
+ | Some _ , attrs ->
746
+ handle_uncurry_application loc fn pat
747
+ {e with pexp_attributes = attrs} mapper
748
+ end
749
+
755
750
| Pexp_record (label_exprs , None) ->
756
751
begin match (* exclude {[ u with ..]} syntax currently *)
757
752
Ext_list. exclude_with_fact
0 commit comments