protobuf.js version: <6.6.5>
What happened to the reverse entries for the generated enums in the static code? I liked that feature.
By reverse I mean, the generated code used to look like
values[valuesById[0] = "NOT_SPECIFIED"] = 0;
values[valuesById[102] = "GET_MISSION"] = 102;
and now looks like
values["NOT_SPECIFIED"] = 0;
values["GET_MISSION"] = 102;
<please paste the stack trace of the error if applicable>
protobuf.js version: <6.6.5>
What happened to the reverse entries for the generated enums in the static code? I liked that feature.
By reverse I mean, the generated code used to look like
and now looks like