Would like to line out the INs and OUTs too.
Output of beautified version:
But I prefer the code fragment below:
And maybe something special line out for default values too...?
Output of beautified version:
Code:
PROCEDURE test
(
,p_price NUMBER
,p_id IN NUMBER
,p_flag OUT BOOLEAN
,p_last_name IN OUT VARCHAR2
) IS
BEGIN
NULL;
END test;
Code:
PROCEDURE test
( p_price NUMBER
, p_id IN NUMBER
, p_flag OUT BOOLEAN
, p_last_name IN OUT VARCHAR2
)
IS
BEGIN
NULL;
END test;