Code completion on overloaded method will always fill in parameter if only one parameter ...

Claus Pedersen

Member³
I have a package myPackage with two overloads of a method, defined like this:

Code:
PROCEDURE tester (onlyParameter NUMBER);
PROCEDURE tester (firstParameter  NUMBER,
                  secondParameter NUMBER);

When I type

Code:
myPackage.tester (

the code completion automatically opens, and I can switch to the preferred overload by clicking the small left/right arrow keys at the bottom of the popup. This is by design.

But if I envoke code completion manually (F6) with the cursor after the opening parenthesis, the parameter onlyParameter is always filled in automatically. I have to delete the parenthesis, type it again, and wait for the automatic code completion to pop up, before I can select the parameters from the second overload.

Please fix this.
 
Last edited:
Back
Top