proteus
proteus copied to clipboard
Review if enums are being marked to conversion when used in a field.
Review if the following code generates the enum:
type Role int8
const (
SimpleIdentifier Role = iota
QualifiedIdentifier
)
//proteus:generate
type Node struct {
Role Role
}