Claus Pedersen
Member³
Bumped from beta forum post 45545:
I have the following code snippet in a program window:
When the cursor is placed at 'param' in line 1, all instances of param are highlighted (lines 1,4, and 6). Same goes for line 4.
But when the cursor is placed at 'param' in line 6, highlight does not work.
A fix was promised in January, but it is still a problem.
I have the following code snippet in a program window:
Code:
PROCEDURE test (param IN OUT INT) IS -- highlight works here
var INT;
BEGIN
param := 1; -- highlight works here
FOR i IN 1..2 LOOP
var := CASE WHEN i=2 THEN param END; -- highlight does not work here
END LOOP;
END;
When the cursor is placed at 'param' in line 1, all instances of param are highlighted (lines 1,4, and 6). Same goes for line 4.
But when the cursor is placed at 'param' in line 6, highlight does not work.
A fix was promised in January, but it is still a problem.