Highlight variable references: record-variable in FOR LOOP

ed10k

Member²
Example:

Code:
create procedure test is
  l_var varchar2(1) := 'Y';
begin
  for REC in (select * from dual) loop
    dbms_output.put_line( REC.dummy || l_var );
  end loop;
end;
If you click on l_var then all l_var references are highlighted.
But if you click on rec: the REC references are NOT highlighted.
 
This is because REC is implicitly declared by the for loop. Only explicitly declared variables and parameters are highlighted.
 
Enhancement request: could you make highlighting of implicitly declared records/variables too?
It would be very helpful. In effect they are the same usage as explicitly declared variables.
 
Back
Top