Recently, I noticed a complaint about receiving an error when trying to open class at point when point is over an import statement. This is one of two situations I wish would work. The other one is when member variables are prefixed with "this."
class X {
String s;
X () {
s = ""; // I can open s' class with point on s;
this.s = ""; // I cannot
}
}
I use the "this." notation a lot as a way to avoid silly naming
conventions for member variables. Is this very hard to implement?
Thanks,
Jim
