You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
exe/protoboeuf currently works as a stand-alone executable that can read binary protobuf ASTs. I think it would be useful if it was also able to function as a protoc plugin. This way people can integrate our codegen with existing protoc workflows.
The text was updated successfully, but these errors were encountered:
extend google.protobuf.FieldOptions {
// docs for a session field
SessionDocs docs = 99901 [retention = RETENTION_SOURCE];
}
These extensions are available in the CodeGeneratorRequest message along with comments. Of course this does mean that you will need to generate and eval both the request and all options at the time of codegen. You can see how we do this in the codegen process for nuevo where we have to load the dependent objects, compile them and then read the options from the descriptor pool
exe/protoboeuf
currently works as a stand-alone executable that can read binary protobuf ASTs. I think it would be useful if it was also able to function as aprotoc
plugin. This way people can integrate our codegen with existingprotoc
workflows.The text was updated successfully, but these errors were encountered: