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 final VALUE = 'value' static def foo() { VALUE } static class Inner { static def bar() { VALUE } } } class Outer { def baz = C.VALUE }
Occurrences of VALUE in Inner and Outer are highlighted as non-final. They should be highlighted as final (same as VALUE on lines 2 and 4).
VALUE
The text was updated successfully, but these errors were encountered:
Fix for #875: add test for final property
3284db5
eric-milles
No branches or pull requests
Consider the following:
Occurrences of
VALUE
in Inner and Outer are highlighted as non-final. They should be highlighted as final (same asVALUE
on lines 2 and 4).The text was updated successfully, but these errors were encountered: