Wrong folding in editor

pavel_j

Member²
Hello,
try to compile this package. In body spec on line 7 procedure PROCEDURE ProcAAA starts. If you try to fold it on line 7 with [+], also Procedure ProcBBB je folded. I dont this it's a correct behaviour, because I assume, that only ProcAAA should be folded and ProcBBB should remain unfolded.

If you try to fold ProcBBB, it's corrent, also if you try to fold ProcStart.

Version: Version 13.0.0.1883 (32 bit)

CREATE OR REPLACE PACKAGE x_jat_common_person_pkg
IS

PROCEDURE ProcStart;
END;

CREATE OR REPLACE PACKAGE BODY x_jat_common_person_pkg IS

PROCEDURE ProcStart
IS
--
PROCEDURE ProcAAA(aaa NUMBER,
bbb VARCHAR2 DEFAULT NULL) IS
xxx NUMBER;
BEGIN
NULL;
END ProcAAA;
--
/** Procedura zalozi podpisova pravidla pro danou smlouvu a subjekt.
*
**/
PROCEDURE ProcBBB(aaa NUMBER, bbb NUMBER)
IS
csProcName CONSTANT VARCHAR2(50) := 'InsertSignaturePattern';
BEGIN
NULL;
END ProcBBB;
--
--
BEGIN /* ProcStart - Start */
NULL;
END ProcStart;
--
END x_jat_common_person_pkg;
 
Last edited:
Hi Marco,

We are using v13.0.6 and still have problem with wrong folding of subprocedures. It was working well with v10. Did you have the chance to check it?

Erhan
 
This will be probably not fixed soon, because the folding problem is known from verzion 12. My current testing version 14 is ending within several days, so just updating info is that problem still exists in version 14.0.0.1961
 
Back
Top