Switch from package hearder to body problem

vlevi

Member³
I tried to view an existing, valid package and body in a program window, with the new, Beta3
The package tab shows the contents, but the package body does not shows anything. The source code appears, of course, but the procedure list is empty.

Képernyőkép 2024-10-03 094915.png Képernyőkép 2024-10-03 094944.png
 
This may be a PL/SQL parser bug. Can you send the package body to support@allroundautomations.com so that we can reproduce and fix this?
 
I have the same problem, and beautifier doesn't work, example dummy:

CREATE OR REPLACE PACKAGE BODY pk_dummy IS
FUNCTION f_dummy RETURN VARCHAR2 IS
CURSOR cur_dummy IS
SELECT * FROM DUAL;
BEGIN
FOR reg IN cur_dummy LOOP
NULL;
END LOOP;

RETURN('OK');
END f_dummy;
END pk_dummy;
 
Back
Top