-
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
cmd/go, go/parser: test gives go/parser's syntax errors, which are sometimes worse than the compiler's #24278
Comments
I agree that the change to run vet always changes what errors one sees, and after all the work put into getting excellent errors from the compiler, it's a shame to go back to the less precise ones from go/parser. But: vet is running in parallel with the compiler, so I think it makes sense to hold off printing errors from vet until the compiler has completed. If the compile fails, drop the noise from vet. That way we only see vet errors if something actually builds. |
That makes sense. That's the sort of thing I was suggesting as an alternative to having to improve go/parser's errors. |
I'd like to see the new syntax package taking the place of go/parser, eventually. Then all tools (including the compiler) will use the same front-end code, with identical behavior and errors. But I don't want to rush this process because once package syntax is exposed (not internal) we cannot change its API anymore. Also, all other go/* packages would have to be adjusted which - while not hard - a time-consuming and error-prone process. But it should be fairly straight-forward to port back this specific error message if need be But @r's suggestion is a better one and solves the more general problem. |
Great - I'll give Rob's fix a try. Thank you both for your input. @griesemer after repurposing this issue to be about the go command, do you want to open another issue about improving go/parser's error? |
Actually, I was wrong - my particular case had nothing to do with vet. My problem was coming from |
@mvdan I'll assign this to me and will look at the parser's error message. But this is not urgent. |
Indeed not urgent - also fine by me if it's not fixed at all, as long as go/parser is replaced eventually. |
It occurred to me that this issue is likely relevant to @findleyr's recent work :) |
Yes, @findleyr is actively working on the parser and I suspect sooner or later the go/parser will produce much better error messages. |
It looks like the error has changed a bit, but is still inferior to the compiler's. The fix here is still to improve go/parser. |
(@matloob: moved to backlog) |
I would usually not mind if go/parser is worse than the compiler's parser at giving useful errors. However, now that vet always runs with test, it's vet that reports syntax errors to me when I run
go test
. This particular error (the more confusing one) had me scratching my head for a minute, before I realised the typo.Should this be fixed in go/parser, or should something else be done, such as using the compiler's syntax package to replace go/parser's syntax errors?
/cc @griesemer
The text was updated successfully, but these errors were encountered: