Skip to content

Commit 94e3b76

Browse files
committed
update with latest syntax submodule
1 parent 6516db5 commit 94e3b76

File tree

9 files changed

+821
-2753
lines changed

9 files changed

+821
-2753
lines changed

.gitmodules

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@
88
branch = master
99
[submodule "ninja"]
1010
path = ninja
11-
url = git@github.com:rescript-lang/ninja.git
11+
url = https://github.com/rescript-lang/ninja
1212
ignore = untracked

jscomp/syntax/ppx_entry.ml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ let rewrite_signature (ast : Parsetree.signature) : Parsetree.signature =
2929
Ast_config.iter_on_bs_config_sigi ast;
3030
let ast =
3131
match !Js_config.jsx_version with
32-
| 3 -> Reactjs_jsx_ppx.rewrite_signature ast
32+
| 3 -> Reactjs_jsx_ppx_v3.rewrite_signature ast
3333
| _ -> ast
3434
(* react-jsx ppx relies on built-in ones like `##` *)
3535
in
@@ -48,7 +48,7 @@ let rewrite_implementation (ast : Parsetree.structure) : Parsetree.structure =
4848
Ast_config.iter_on_bs_config_stru ast ;
4949
let ast =
5050
match !Js_config.jsx_version with
51-
| 3 -> Reactjs_jsx_ppx.rewrite_implementation ast
51+
| 3 -> Reactjs_jsx_ppx_v3.rewrite_implementation ast
5252
| _ -> ast
5353
in
5454
if !Js_config.no_builtin_ppx then ast else

0 commit comments

Comments
 (0)