Skip to content

Commit 6ef1bf6

Browse files
committed
Update CHANGELOG.md
1 parent 43c855d commit 6ef1bf6

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

CHANGELOG.md

-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@
2929
- AST cleanup: Remove Pexp_function from the AST. https://github.com/rescript-lang/rescript/pull/7198
3030
- Remove unused code from Location and Rescript_cpp modules. https://github.com/rescript-lang/rescript/pull/7150
3131
- Build with OCaml 5.2.1. https://github.com/rescript-lang/rescript-compiler/pull/7201
32-
- AST cleanup: Remove `Function$` entirely for function definitions. https://github.com/rescript-lang/rescript/pull/7200
3332

3433

3534
# 12.0.0-alpha.5

compiler/syntax/src/jsx_v4.ml

+1-4
Original file line numberDiff line numberDiff line change
@@ -1267,10 +1267,7 @@ let map_binding ~config ~empty_loc ~pstr_loc ~file_name ~rec_flag binding =
12671267
[(Nolabel, Exp.ident {txt = Lident "props"; loc})]))
12681268
in
12691269

1270-
let wrapper_expr =
1271-
Ast_uncurried.uncurried_fun ~loc:wrapper_expr.pexp_loc ~arity:1
1272-
wrapper_expr
1273-
in
1270+
let wrapper_expr = Ast_uncurried.uncurried_fun ~arity:1 wrapper_expr in
12741271

12751272
let internal_expression =
12761273
Exp.let_ Nonrecursive

0 commit comments

Comments
 (0)