MatchFormatter defines formatting rules for match expressions
| 6 | |
| 7 | // MatchFormatter defines formatting rules for match expressions |
| 8 | type MatchFormatter struct { |
| 9 | AlignArms bool // Align match arms at => (default: true) |
| 10 | } |
| 11 | |
| 12 | // NewMatchFormatter creates a new match formatter with default settings |
| 13 | func NewMatchFormatter() *MatchFormatter { |
nothing calls this directly
no outgoing calls
no test coverage detected