Procedure variable can not be syntax highlighted when used in private procedure

Claus Pedersen

Member³
I have the following code:
Code:
CREATE OR REPLACE PACKAGE BODY tester IS
  PROCEDURE tester IS
    my_variable NUMBER; /* highlight works */

    PROCEDURE my_private_procedure IS
    BEGIN
      IF my_variable = 1 THEN /* highlight does NOT work */
        NULL;
      END IF;
    END my_private_procedure;

  BEGIN
    my_variable := 1; /* highlight works */
    my_private_procedure;
  END;
END;

Variable highlight is working when cursor is on the variable my_variable in lines 3 and 13, but is not working in line 7.
 
Back
Top