We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Consider the following:
class C { static getName() { } } C.name C.getName() def c = C.class c.name c.getName()
Each occurrence of "name" and "getName" refer to C#getName() and not Class#getName(). They are currently shown as java.lang.Class references.
C#getName()
Class#getName()
java.lang.Class
The text was updated successfully, but these errors were encountered:
GROOVY-1809 tracks private method visibility; GROOVY-3458 and GROOVY-8350 discuss static members versus Class instance members.
Sorry, something went wrong.
Fix for #1257: static member resolves before Class instance field/method
b344a94
see GROOVY-1809, GROOVY-3548, GROOVY-3549, GROOVY-8350
eric-milles
No branches or pull requests
Consider the following:
Each occurrence of "name" and "getName" refer to
C#getName()
and notClass#getName()
. They are currently shown asjava.lang.Class
references.The text was updated successfully, but these errors were encountered: