Tidy up match
expressions #58
Labels
No labels
bug
design
duplicate
enhancement
maintenance
prospective
question
todo
ui
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: glen/dyna3#58
Loading…
Add table
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Some of the
match
expressions in our code would read more cleanly asif let
expressions. For example, there are severalmatch
expressions where one arm does something and the other arm is_ => ()
.Other
match
expressions have unnecessary commas after braced blocks. These commas should be removed.