dvdkruk / protobuf-dt

Automatically exported from code.google.com/p/protobuf-dt
0 stars 0 forks source link

Groups can contain Messages and Extensions #168

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Example:

message TopMessage {
  message MidMessage {
    message BottomMessage {
      extensions 4 to max;
    }

    optional group BottomGroup = 1 {
      extensions 4 to max;
    }
  }

  optional group MidGroup = 2 {
    message BottomMessage {
      extensions 4 to max;
    }

    optional group BottomGroup = 3 {
      extensions 4 to max;
    }
  }
}

Original issue reported on code.google.com by alr...@google.com on 29 Nov 2011 at 3:11

GoogleCodeExporter commented 9 years ago
rd97683117def

Original comment by alr...@google.com on 29 Nov 2011 at 3:22