go
go copied to clipboard
Skip type aliases
Hi, when you define type A = B
, A
becomes an alias of B
.
Instead, using type A B
, B
is an underlying object of A
.
For the former, the generator incorrectly generates duplicated selfer
methods causing the go code to be invalid.
Regards, Mauro