astnorm
astnorm copied to clipboard
rewrite if/else to a switch
Before:
if a {
} else if b {
}
After:
switch {
case a:
case b:
}