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:
package pack class Util { ... static def getSomething() { ... } static void setSomething(value) { ... } }
import static pack.Util.* def thing = something something = null
Semantic highlight of the property versions of getSomething and setSomething are incorrect.
getSomething
setSomething
The text was updated successfully, but these errors were encountered:
Another example:
import static java.lang.System.getProperties for(property in properties) { }
Sorry, something went wrong.
Fix for issue #545: set name range of static method call expressions
c8070b8
eric-milles
No branches or pull requests
Consider the following:
Semantic highlight of the property versions of
getSomething
andsetSomething
are incorrect.The text was updated successfully, but these errors were encountered: