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
Follow up of #364.
Consider this Groovy class:
package test45 class Test45 { static class Foo { String someString = 'foo' } static class Bar { String someString = 'bar' Foo foo = new Foo() void doSomething() { foo.with { println "someString inside with closure = $someString" println "someString of owner inside with closure = $owner.someString" owner.someString someString | } } } static main(args) { Bar b = new Bar() println "b.someString = $b.someString" println "b.foo.someString = $b.foo.someString" b.doSomething() } }
Try to invoke Call Hierarchy or Search for References for either Foo.someString or Bar.someString: no references at all is found for either of them.
Foo.someString
Bar.someString
The text was updated successfully, but these errors were encountered:
Fix for #788: match inner class type name
b99a032
Ready to test
Sorry, something went wrong.
Verified with 3.3.0.xx-201901072218-e49, works well, thank you! 👍
eric-milles
No branches or pull requests
Follow up of #364.
Consider this Groovy class:
Try to invoke Call Hierarchy or Search for References for either
Foo.someString
orBar.someString
: no references at all is found for either of them.The text was updated successfully, but these errors were encountered: