I noticed that Code Contents browser will be empty after compiling a Package Body that has a siple (type)failure in it ('else if' instead of 'elsif').
create or replace package body TEST is
function OK return pls_integer is
begin
return 1;
end OK;
function WRONG return pls_integer is
begin
if (1=0) then
return 0;
else if (1=1) then
-- ^ here is the Problem
return 0;
end if;
end WRONG;
end test;
create or replace package body TEST is
function OK return pls_integer is
begin
return 1;
end OK;
function WRONG return pls_integer is
begin
if (1=0) then
return 0;
else if (1=1) then
-- ^ here is the Problem
return 0;
end if;
end WRONG;
end test;