Details
-
Type:
Improvement
-
Status:
Resolved
-
Priority:
Minor
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: 2.6.1.Release
-
Labels:None
-
Number of attachments :
Description
In the following script, the variable i cannot be navigated to by "Open Declaration":
def i = 1
def s = "$i"
However, it works as expected with the following:
def i = 1
def s = "${i}"
I just tried this. I am bumping this down to minor since looks like this only happens for variables that are 1 char long. If I rename the variable to ii, then things work as expected.
I'll see if there is an easy fix anyway.