Show 'Parameter Info' command doesn't work in call of super and this method

Issue #813 resolved
Theodoor van Donge created an issue

How to reproduce:

public class Y {
  public Y(String www) {}
}

public class X extends Y {
  public X() {
    super('Something'*Place cursor here*);
  }
}

If you place your cursor at the marked place and you hit the show Parameter Info command, it doesn't show the parameter info.

The example shows super(), but the same applies to this() call, in case you've multiple constructors.

Comments (6)

  1. Scott Wells repo owner

    Ah, good to know. I'm currently fixing some issues in this exact area. I'll make sure this gets addressed as well while I'm in there.

  2. Log in to comment