-
Notifications
You must be signed in to change notification settings - Fork 17.9k
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
x/tools/gopls: bump go2 support #41020
Comments
Do you mind sharing the patch you applied? If the issue is in go/types, I imagine that |
It has to be updated sadly because brackets isn't the default in the go2go branch either (which I also hacked), the relevant patch for x/tools is: diff --git a/go/loader/loader.go b/go/loader/loader.go
index bc12ca33..f3b45a01 100644
--- a/go/loader/loader.go
+++ b/go/loader/loader.go
@@ -1027,6 +1027,9 @@ func (imp *importer) addFiles(info *PackageInfo, files []*ast.File, cycleCheck b
} else {
// Ignore the returned (first) error since we
// already collect them all in the PackageInfo.
+ for _, f := range files {
+ f.UseBrackets = true
+ }
info.checker.Files(files)
info.Files = append(info.Files, files...)
} |
Hm, I'm not sure that anything in |
I also have a similar patch in |
Yeah, it will be the go/types version that made |
Based on https://groups.google.com/forum/?oldui=1#!topic/golang-nuts/iAD0NBz3DYw, it seems to me that there should be no reason to hardcode anything to true here. |
Seems like after the new set of updates from 2-3 days ago I no longer have to patch the stdlib. |
Please update the go2go branch or at least have an option to use brackets.
Getting spammed with
inconsistent use of () or [] for type parameters
, had to hacksrc/go/types/check.go
manually.The text was updated successfully, but these errors were encountered: