You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Bug 1: pSubFunction is detected twice (comment + function)
-- test with subfunction
procedure pMainProcedure(param1 in varchar2)
is
x number;
/**
* function pSubFunction
*/
function pSubFunction(param1 in number)
is
begin
-- some code to execute
return 3;
end pSubFunction;
begin
-- some code to execute
-- call to subFunction
x = pSubFunction(2);
end pMainProcedure;
Bug 2: parsing stop
-- test with subfunction
procedure pMainProcedure(param1 in varchar2)
is
x number;
-- begin
function pSubFunction(param1 in number)
is
begin
-- some code to execute
return 3;
end pSubFunction;
begin
-- some code to execute
-- call to subFunction
x = pSubFunction(2);
end pMainProcedure;
The text was updated successfully, but these errors were encountered:
Bug 1: pSubFunction is detected twice (comment + function)
Bug 2: parsing stop
The text was updated successfully, but these errors were encountered: