Skip to content

Commit f18e564

Browse files
author
Hongbo Zhang
committed
provide attributes support for application [f a]
1 parent 16605ef commit f18e564

File tree

4 files changed

+23
-25
lines changed

4 files changed

+23
-25
lines changed

jscomp/ppx_entry.ml

+17-22
Original file line numberDiff line numberDiff line change
@@ -679,23 +679,6 @@ let rec unsafe_mapper : Ast_mapper.mapper =
679679
| Pexp_extension ({txt = "bs.debugger"; loc} , payload)
680680
-> handle_debugger loc payload
681681
(** 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 *)
699682
| Pexp_fun ("", None, pat , body)
700683
->
701684
let loc = e.pexp_loc in
@@ -710,12 +693,12 @@ let rec unsafe_mapper : Ast_mapper.mapper =
710693
Location.raise_errorf ~loc
711694
{| `fun [@uncurry] (param0, param1) -> `
712695
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
718700
end
701+
719702
| Pexp_apply ({pexp_desc = Pexp_ident {txt = Lident "#@"; loc}},
720703
[("", fn);
721704
("", pat)])
@@ -752,6 +735,18 @@ let rec unsafe_mapper : Ast_mapper.mapper =
752735
) )
753736
])
754737
-> 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+
755750
| Pexp_record (label_exprs, None) ->
756751
begin match (* exclude {[ u with ..]} syntax currently *)
757752
Ext_list.exclude_with_fact

jscomp/test/attr_test.ml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
let u = fun [@uncurry] (x,y) -> x + y
33

4-
(* let h = u (1,2) [@uncurry] *)
4+
let h = u (1,2) [@uncurry]
55

66
type u = < v : int ; y : int > [@uncurry]
77

jscomp/test/test_react.ml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ type doc = document Js.t
1212
external doc : doc = "doc" [@@bs.val ]
1313

1414
class type con =
15-
object
16-
method log : 'a -> unit [@uncurry]
15+
object [@uncurry]
16+
method log : 'a -> unit
1717
end
1818

1919
type console = con Js.t

lib/js/test/attr_test.js

+3
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,8 @@ function u(x, y) {
66
return x + y | 0;
77
}
88

9+
var h = u(1, 2);
10+
911
exports.u = u;
12+
exports.h = h;
1013
/* u Not a pure module */

0 commit comments

Comments
 (0)