As simplification of var declaration,Can you consider adding type declarations to the ranks of simplification?
exp:
type ExampleArgs struct {
X int
}
type ExampleReply struct {
Y int
}
after:
type (
ExampleArgs struct {
X int
}
ExampleReply struct {
Y int
}
)
As simplification of
vardeclaration,Can you consider addingtypedeclarations to the ranks of simplification?exp:
after: