Skip to content

Commit 120f1e8

Browse files
authored
Include paren pattern range in tuple simple pat (#10162)
1 parent 1013a8d commit 120f1e8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/fsharp/SyntaxTreeOps.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ let rec SimplePatsOfPat synArgNameGenerator p =
200200

201201
| SynPat.Tuple (false, ps, m)
202202

203-
| SynPat.Paren(SynPat.Tuple (false, ps, m), _) ->
203+
| SynPat.Paren(SynPat.Tuple (false, ps, _), m) ->
204204
let ps2, laterF =
205205
List.foldBack
206206
(fun (p', rhsf) (ps', rhsf') ->

0 commit comments

Comments
 (0)