Program window content pane is empty when using loop combined with coalesce

Claus Pedersen

Member³
I have the following code in a program window:
Code:
CREATE OR REPLACE PROCEDURE myProcedure IS
BEGIN
  FOR i IN coalesce(1,2)..3 LOOP
    NULL;
  END LOOP;
END;

Note, that the program window content pane is empty.

When you comment out the two lines with LOOP and END LOOP, the content appears again.

So it is the combo of coalesce and LOOP that confuses the parser. Also navigation using hyperlinks does not work, PLD states: Navigation not possible due to errors in source code

I am using beta 3
 
Back
Top