Skip to content

Commit 04d0c5b

Browse files
committed
Update pars.fsy
1 parent aa7bd57 commit 04d0c5b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Compiler/pars.fsy

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5744,15 +5744,15 @@ recdExprCore:
57445744
| appExpr WITH recdBinding recdExprBindings opt_seps_block
57455745
{ let l = List.rev $4
57465746
let l = rebindRanges $3 l $5
5747-
(Some($1, $5), l) }
5747+
(Some($1, None), l) }
57485748

57495749
| appExpr OWITH opt_seps_block OEND
5750-
{ (Some($1, $3), []) }
5750+
{ (Some($1, None), []) }
57515751

57525752
| appExpr OWITH recdBinding recdExprBindings opt_seps_block OEND
57535753
{ let l = List.rev $4
57545754
let l = rebindRanges $3 l $5
5755-
(Some($1, $5), l) }
5755+
(Some($1, None), l) }
57565756

57575757
opt_seps_block:
57585758
| seps_block

0 commit comments

Comments
 (0)