Given a.proto and b.proto, if b.proto imports a.proto and uses an object, say c, any comments within c from a.proto will not be generated.
a.proto:
message C {
// This comment doesn't get turned into a tooltip
required int64 something = 1;
}
b.proto:
message WrapperMsg {
// This message does
required a.C nested = 1;
}
Is it possible for the parser to process imported .proto files and their comments?