Details
-
Type:
Bug
-
Status:
Resolved
-
Priority:
Critical
-
Resolution: Fixed
-
Affects Version/s: 2.5.2.Release
-
Fix Version/s: 2.6.1.M1
-
Component/s: Inferencing Engine
-
Labels:None
-
Number of attachments :
Description
In Parent.groovy:
class Parent {
static p() {}
}
In Child.groovy:
class Child extends Parent {
def c() {
p()
}
}
Control-clicking (or pressing F3) on p in Child.groovy will select Child and not navigate to Parent.p
Thanks for this. It is reproducible and is likely a regression (although I apparently don't have any tests for this). I'm bumping up the priority.
It looks like it is a bug in the code select logic since searching and mark occurrences work as expected.