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 Groovy classes:
package test7 import java.beans.PropertyChangeSupport class B extends PropertyChangeSupport { Object info }
And:
package test7 import java.beans.PropertyChangeEvent import javax.annotation.PostConstruct class D { B bean @PostConstruct void init() { bean.with { addPropertyChangeListener('name') { PropertyChangeEvent event -> info } } } }
The info reference is not recognized by Greclipse inside the inner closure. It should be a reference to B.info, by virtue of the outer with closure.
info
B.info
with
The text was updated successfully, but these errors were encountered:
Fix for issue #377: apply closure resolve strategy recursively
afd444f
ready to test
Sorry, something went wrong.
This works fine in 2.9.2.xx-201711100505-e46, thank you! 👍
No branches or pull requests
Consider the following Groovy classes:
And:
The
info
reference is not recognized by Greclipse inside the inner closure. It should be a reference toB.info
, by virtue of the outerwith
closure.The text was updated successfully, but these errors were encountered: