gopatch icon indicating copy to clipboard operation
gopatch copied to clipboard

Elision in value declarations

Open abhinav opened this issue 3 years ago • 0 comments

We should support elision in value declarations. e.g.,

-var a, ..., c string
+var a, ..., c int
  var (
    ...
-   name = value
+   _name = value
    ...
  )

abhinav avatar Apr 21 '21 18:04 abhinav