We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
An enum embedded in a message is currently not supported:
enum
message
syntax = "proto3"; package x.y.; message MyMessage { message MyNestedMessage { enum MyNestedEnum { VALUE_1 = 0; } MyNestedEnum enum1 = 1; } }
The workaround is to move the nested enum to top level:
syntax = "proto3"; package x.y.; enum MyNestedEnum { VALUE_1 = 0; } message MyMessage { message MyNestedMessage { MyNestedEnum enum1 = 1; } }
Add the support.
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
What is currently missing?
An
enum
embedded in amessage
is currently not supported:The workaround is to move the nested enum to top level:
How could this be improved?
Add the support.
The text was updated successfully, but these errors were encountered: