Alex Badarin

Results 3 issues of Alex Badarin

When different messages have nested enums sharing the same name, those enums are visualized as one linked to all the parent messages. For example, the following code ``` message Post...

When two message definitions are nested one inside the other, the inner one is translated like a part of the outer's label, creating a syntax error. ``` message User {...

Hi. This is valid ProtoBuf: ``` message Status { required bool success = 1; optional string message = 2; } ``` But it generates an error because the name _message_...