Code assistant does not know parameters to local procedures

Worker

Member³
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 "(":
Code:
declare
	procedure Foo(bar in number)
	is
	begin
		null;
	end;
begin
	Foo();
end;
Not a big deal to me. Just something you may want to consider 'fixing' after all the important stuff is done.
 
It seems that it eventually "learns" about procedures defined within the package you're developing, but I'd be interested to know when that learning occurs, so I can make it happen when needed.
 
Local/private procedures are indeed not described by the Code Assistant.

Public procedures are described only after the package specification has been successfully compiled.
 
Back
Top