-
Notifications
You must be signed in to change notification settings - Fork 2.3k
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
go/packages: ensure TypesInfo is set when NeedTypesInfo is enabled #536
go/packages: ensure TypesInfo is set when NeedTypesInfo is enabled #536
Conversation
Thanks for your pull request! It looks like this may be your first contribution to a Google open source project. Before we can look at your pull request, you'll need to sign a Contributor License Agreement (CLA). View this failed invocation of the CLA check for more information. For the most up to date status, view the checks section at the bottom of the pull request. |
This PR (HEAD: 38870bb) has been imported to Gerrit for code review. Please visit Gerrit at https://go-review.googlesource.com/c/tools/+/621015. Important tips:
|
Message from Gopher Robot: Patch Set 1: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/621015. |
Message from Gopher Robot: Patch Set 1: Congratulations on opening your first change. Thank you for your contribution! Next steps: Most changes in the Go project go through a few rounds of revision. This can be Please don’t reply on this GitHub thread. Visit golang.org/cl/621015. |
Message from Chris Tang (潮生): Patch Set 1: (2 comments) Please don’t reply on this GitHub thread. Visit golang.org/cl/621015. |
Message from Michael Matloob: Patch Set 3: (3 comments) Please don’t reply on this GitHub thread. Visit golang.org/cl/621015. |
This PR (HEAD: c053272) has been imported to Gerrit for code review. Please visit Gerrit at https://go-review.googlesource.com/c/tools/+/621015. Important tips:
|
Message from Chris Tang (潮生): Patch Set 5: (3 comments) Please don’t reply on this GitHub thread. Visit golang.org/cl/621015. |
Message from Alan Donovan: Patch Set 5: Code-Review+2 Commit-Queue+1 (2 comments) Please don’t reply on this GitHub thread. Visit golang.org/cl/621015. |
Message from Go LUCI: Patch Set 5: Dry run: CV is trying the patch. Bot data: {"action":"start","triggered_at":"2024-11-01T21:55:51Z","revision":"7621825ad56a8e343a6651ac471f8ce952f3bb67"} Please don’t reply on this GitHub thread. Visit golang.org/cl/621015. |
Message from Alan Donovan: Patch Set 5: -Commit-Queue Please don’t reply on this GitHub thread. Visit golang.org/cl/621015. |
Message from Go LUCI: Patch Set 5: This CL has passed the run Please don’t reply on this GitHub thread. Visit golang.org/cl/621015. |
Message from Go LUCI: Patch Set 5: LUCI-TryBot-Result+1 Please don’t reply on this GitHub thread. Visit golang.org/cl/621015. |
This PR (HEAD: e658e9f) has been imported to Gerrit for code review. Please visit Gerrit at https://go-review.googlesource.com/c/tools/+/621015. Important tips:
|
Message from Chris Tang (潮生): Patch Set 6: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/621015. |
Message from Tim King: Patch Set 6: Commit-Queue+1 Please don’t reply on this GitHub thread. Visit golang.org/cl/621015. |
Message from Go LUCI: Patch Set 6: Dry run: CV is trying the patch. Bot data: {"action":"start","triggered_at":"2024-11-03T22:33:41Z","revision":"e1b5eaf535c4182149d611c1f686a403cc019966"} Please don’t reply on this GitHub thread. Visit golang.org/cl/621015. |
Message from Tim King: Patch Set 6: -Commit-Queue Please don’t reply on this GitHub thread. Visit golang.org/cl/621015. |
Message from Go LUCI: Patch Set 6: This CL has passed the run Please don’t reply on this GitHub thread. Visit golang.org/cl/621015. |
Message from Go LUCI: Patch Set 6: LUCI-TryBot-Result+1 Please don’t reply on this GitHub thread. Visit golang.org/cl/621015. |
Message from Tim King: Patch Set 6: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/621015. |
Message from Michael Matloob: Patch Set 6: Code-Review+2 (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/621015. |
Message from Chris Tang (潮生): Patch Set 7: (2 comments) Please don’t reply on this GitHub thread. Visit golang.org/cl/621015. |
Message from Tim King: Patch Set 7: Code-Review+2 Commit-Queue+2 Please don’t reply on this GitHub thread. Visit golang.org/cl/621015. |
Message from Go LUCI: Patch Set 7: CV is trying the patch. Bot data: {"action":"start","triggered_at":"2024-11-05T00:36:45Z","revision":"936af6bedb4b9e6dcfe941bfe335e53255d44d3d"} Please don’t reply on this GitHub thread. Visit golang.org/cl/621015. |
This fixes some cases when only NeedTypesInfo was set, no TypesInfo was produced. Under most circumstances NeedTypesInfo should work the same as NeedTypes, since Types and TypesInfo are produced together (except for cases when ExportFiles were included). Fixes #69931 Change-Id: I157143e93c459d8c52dea85fe1746881ed1978d3 GitHub-Last-Rev: e658e9f GitHub-Pull-Request: #536 Reviewed-on: https://go-review.googlesource.com/c/tools/+/621015 Commit-Queue: Tim King <taking@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Alan Donovan <adonovan@google.com> Reviewed-by: Tim King <taking@google.com> Reviewed-by: Michael Matloob <matloob@golang.org>
This PR is being closed because golang.org/cl/621015 has been merged. |
This fixes some cases when only NeedTypesInfo was set, no TypesInfo was produced.
Under most circumstances NeedTypesInfo should work the same as NeedTypes, since Types and TypesInfo are produced together (except for cases when ExportFiles were included).
Fixes #69931