-
Notifications
You must be signed in to change notification settings - Fork 230
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
tools: auto insert the generated field and messaged from a new proto field #2511
tools: auto insert the generated field and messaged from a new proto field #2511
Conversation
8073bb4
to
570dc6f
Compare
How do we fix merge conflict on go.work? @yuwenma
|
b7c1cc8
to
a5f2c13
Compare
/assign @jasonvigil @justinsb |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is cool 👍
ast.Inspect(file, func(n ast.Node) bool { | ||
switch node := n.(type) { | ||
case *ast.GenDecl: | ||
if node.Tok != token.TYPE || len(node.Specs) == 0 { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It looks like || len(node.Specs) == 0
is unnecessary?
/approve |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: jasonvigil The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
a5f2c13
to
f5e9cc0
Compare
revert changes made by the update tool. update go mod.
Rebased |
/lgtm |
1ed7c14
into
GoogleCloudPlatform:master
The insertion is mechanical, based on go file parsing.
This PR is rebased on #2425, which is AI-based inseration.
Future work: