We should show copy comments in protobuf files to generated code.
Source Code Info can be found inside the file descriptor proto.
Example:
// A test message
message TestMessage {
// The id
int32 id = 1;
string name = 2; // A name
}
should be converted to
/**
* A test message
*
* @param id The id
* @param name A name
**/
@Serializable
data class TestMessage ( ... )
We should show copy comments in protobuf files to generated code.
Source Code Info can be found inside the file descriptor proto.
Example:
should be converted to