Skip to content
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

Call Hierarchy and Find References missing pseudo-property references to accessor method #988

Closed
eric-milles opened this issue Nov 8, 2019 · 2 comments
Assignees
Labels
Milestone

Comments

@eric-milles
Copy link
Member

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.

@eric-milles eric-milles self-assigned this Nov 8, 2019
@eric-milles eric-milles added the bug label Nov 8, 2019
@eric-milles eric-milles added this to the v3.6.0 milestone Nov 8, 2019
@eric-milles
Copy link
Member Author

image
image

@eric-milles
Copy link
Member Author

image
image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant