Skip to content
This repository was archived by the owner on Dec 23, 2024. It is now read-only.

Commit 33840a5

Browse files
auduchinoknosami
authored andcommitted
Include paren pattern range in tuple simple pat (dotnet#10162)
1 parent 7b0ad89 commit 33840a5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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)