-
Notifications
You must be signed in to change notification settings - Fork 193
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
Unrecognized static method call from within closure #502
Comments
If |
ready to test |
Tested with 3.0.0.xx-201802282219-e47: the above use case works, but this does not work yet (i.e.: closure inside closure): package test25
class Test25 {
static void foo() {
String a = 'a'
File b = new File()
new Object().each {
new Object().each {
bar(a, b)
}
}
}
static void bar(String a, File b) {
}
} |
- handles closures within closures
ready to test |
With 3.0.0.xx-201803020428-e47 even the case of static call in closure-inside-closure works, thank you! |
Consider this:
The call to
Test25.bar(String, File)
fromTest25.foo()
(inside the closure) is not recognized: it's underlined and navigation with F3 or Ctrl+Click does not work correctly.The text was updated successfully, but these errors were encountered: