gnostic icon indicating copy to clipboard operation
gnostic copied to clipboard

Support field numbers and reserved fields

Open erikwilson opened this issue 2 months ago • 0 comments

It would be helpful if we could support field numbers and reserved field definitions when converting to / from proto.

For example:

message Request {
    reserved 2;
    reserved "second";

    string first = 1;
    string third = 3;
}

erikwilson avatar Oct 17 '25 00:10 erikwilson