Using the following code in a test script, the code assistant suggests Foo() when I just type "F", but does not know the parameters to Foo() when I type the "(":
Not a big deal to me. Just something you may want to consider 'fixing' after all the important stuff is done.
Code:
declare
procedure Foo(bar in number)
is
begin
null;
end;
begin
Foo();
end;