Consider the following:
class Foo {
// no "bar" field or property
def getBar() {
//...
}
void doBaz() {
bar
"$bar"
}
}
void meth(List<Foo> list) {
for (foo in list) {
foo.bar
}
list.each { it.bar }
}
Call Hierarchy (Ctrl+Alt+H) and Find References (Ctrl+Shift+G) are missing all occurrences of "bar" above. Code Hover (F2), Code Select (F3) and Syntax Highlighting work as expected.
Consider the following:
Call Hierarchy (Ctrl+Alt+H) and Find References (Ctrl+Shift+G) are missing all occurrences of "bar" above. Code Hover (F2), Code Select (F3) and Syntax Highlighting work as expected.