File tree 2 files changed +4
-2
lines changed
2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -1452,6 +1452,8 @@ and walk_expression expr t comments =
1452
1452
attach t.leading expr.pexp_loc leading;
1453
1453
walk_expression expr t inside;
1454
1454
attach t.trailing expr.pexp_loc trailing
1455
+ | Pexp_construct ({txt = Longident. Lident "Function$" } , Some return_expr ) ->
1456
+ walk_expression return_expr t comments
1455
1457
| _ ->
1456
1458
if is_block_expr return_expr then walk_expression return_expr t comments
1457
1459
else
Original file line number Diff line number Diff line change @@ -226,10 +226,10 @@ let f = (
226
226
/* c6 */ ~x=?,
227
227
) => /* c7 */ ()
228
228
229
- let multiply = (type /* c-2 */ t /* c-1 */, m1 /* c1 */, /* c2 */ m2 /* c3 */) => ()
229
+ let multiply = (type /* c-2 */ t /* c-1 */, /* c0 */ m1 /* c1 */, /* c2 */ m2 /* c3 */) => ()
230
230
let multiply = (
231
231
type /* c-4 */ t /* c-3 */,
232
- m1 /* c1 */,
232
+ /* c0 */ m1 /* c1 */,
233
233
type /* c-2 */ s /* c-1 */,
234
234
/* c2 */ m2 /* c3 */,
235
235
) => ()
You can’t perform that action at this time.
0 commit comments