You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
classFoo {
// no "bar" field or propertydefgetBar() {
//...
}
voiddoBaz() {
bar
"$bar"
}
}
voidmeth(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.
The text was updated successfully, but these errors were encountered:
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.
The text was updated successfully, but these errors were encountered: