-
Notifications
You must be signed in to change notification settings - Fork 4.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Syntax changes for recursive pattern-matching feature #32432
Conversation
src/Compilers/CSharp/Portable/Parser/LanguageParser_Patterns.cs
Outdated
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done with review pass (iteration 2)
Sorry, I failed to notice the "personal" label. #Closed |
- Permit a trailing comma after the last arm of a switch expression - Permit a trailing comma after the last subpattern of a property pattern clause Fixes dotnet#32292
abde91d
to
788b90b
Compare
@dotnet/roslyn-compiler May I please have a couple of reviews of this set of syntax changes for pattern-matching? It is targeting P3. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM Thanks (iteration 5)
* Rename "deconstruct pattern" to "positional pattern" in the APIs. Fixes dotnet#32291 * Permit a trailing commas in two places - Permit a trailing comma after the last arm of a switch expression - Permit a trailing comma after the last subpattern of a property pattern clause Fixes dotnet#32292
Rename "deconstruct pattern" to "positional pattern" in the APIs.
Fixes #32291
Permit a trailing commas in two places
Fixes #32292