gopatch
gopatch copied to clipboard
Elision in value declarations
We should support elision in value declarations. e.g.,
-var a, ..., c string
+var a, ..., c int
var (
...
- name = value
+ _name = value
...
)