intellij-protobuf-plugin
intellij-protobuf-plugin copied to clipboard
Plugin not supports field reservation
- Create a proto file and paste
syntax = "proto3";
message Test{
reserved 2;
reserved "to_be_reserved";
int32 field = 1;
int32 to_be_reserved = 3;
}
- The plugin doesn't recognize field reservations (as mentioned in language guide https://protobuf.dev/programming-guides/proto3/#fieldreserved)
Currently we support those symbol:
syntax = "proto3";
message Test{
reserved 2;
reserved to_be_reserved;
int32 field = 1;
int32 to_be_reserved = 3;
}
I will update the AST to support this.
Will be resolved in 2.0.0, currently we are running 2.0.0-EAP, you can join us to test it.