Skip to content
New issue

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

fix: support for nested messages and enums within group blocks #1687

Closed
wants to merge 11 commits into from

Conversation

JoshuaWise
Copy link
Contributor

This fixes support for proto files that have nested messages or enums declared within groups, like this:

syntax = "proto2";

message Foo {
  repeated group Field = 1 {
    message Bar {
      optional bool my_bool = 2;
    }

    optional string my_string = 3;
    optional Bar my_bar = 4;
  }
}

@JoshuaWise
Copy link
Contributor Author

Closed in favor of #1790

@JoshuaWise JoshuaWise closed this Aug 11, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants