metastore icon indicating copy to clipboard operation
metastore copied to clipboard

ProtoLanguageFileWriter unable to write specific message options

Open alexvanboxel opened this issue 5 years ago • 0 comments

Both message option are symaticly the same, but the ProtoLanguageFileWriter is unable to write the first version out (they have a different binary representation).

message Message {
    option (package.field).version = "1.2";
    option (package.field).description = "test description";

vs

message Message {
	option (package.field) = {
		version: "1.2"
		description: "test  description"
	};

alexvanboxel avatar Dec 27 '19 07:12 alexvanboxel