The mapping of an ASN.1 enumerated value declaration to Go is
to an integer constant.
ASN.1 production:
<name> <EnumType> ::= <value>
Generated code:
const <name> = <int value>
Where <int value> is the integer value associated with the
ASN.1 enumerated value.