-
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/compile: Manually calling init should provide a better error message, currently says "undefined: init" #8481
Comments
From http://golang.org/ref/spec#Program_initialization_and_execution """" Variables may also be initialized using functions named init declared in the package block, with no arguments and no result parameters. func init() { … } Multiple such functions may be defined, even within a single source file. The init identifier is not declared and thus init functions cannot be referred to from anywhere in a program. """" IMO, the error message reflects the specification well. As the identifier is not declared, calling it is like calling any other undefined function. The identifier is special, the error is not. |
I agree that this is technically correct, however the fact you can't call init is a byproduct of the implementation which renames init to prevent colissions if multiple init functions are present. Although I cannot suggest appropriate wording, I think this error message could be improved. Labels changed: added release-none, repo-main. Status changed to Accepted. |
I've mailed https://go-review.googlesource.com/c/34790 to reignite the conversation. |
CL https://golang.org/cl/34790 mentions this issue. |
I just saw the fix and I think it's not correct. See my comment on the CL, but in short While the error message originally was not very helpful (but correct), now the error message is misleading. I think this requires a more careful approach. Reopening. |
CL https://golang.org/cl/37876 mentions this issue. |
This reverts commit cb6e063. The fix is incorrect as it's perfectly fine to refer to an identifier 'init' inside a function, and 'init' may even be a variable of function value. Misspelling 'init' in that context would lead to an incorrect error message. Reopened #8481. Change-Id: I49787fdf7738213370ae6f0cab54013e9e3394a8 Reviewed-on: https://go-review.googlesource.com/37876 Run-TryBot: Robert Griesemer <gri@golang.org> Reviewed-by: Matthew Dempsky <mdempsky@google.com>
Thank you @griesemer for taking a look at it. Gotcha, I'll yield to someone else to work on it. |
I think a message like in the reverted patch such as "cannot refer to init function in user code" is fine, but we should first check if there actually is an init function at package level which the user is/could be referring to. |
Not urgent. Has been like this for a while. Quite possibly will be addressed by the front-end cleanup that's in the works. |
Non-urgent. Moving to 1.12. |
Still not urgent, and the error message is correct per spec. Moving to unplanned. |
The text was updated successfully, but these errors were encountered: