Minor bug: code completion on record inside record does not work correctly

Claus Pedersen

Member³
I have the following piece of code with two records, the first embedded in the other:

Code:
<...>
  TYPE rec_inner IS RECORD (
    a NUMBER,
    b NUMBER);

  TYPE rec IS RECORD (
    x     NUMBER,
    y     NUMBER,
    myRec rec_inner);

  myVar rec;

BEGIN
  myVar.myRec.
<...>
Code completion after "myVar.myRec." gives a list of items in the record "rec", I expected a list of elements in "rec_inner" (the type of the attribute myRec).

Can you put this in the pile of "requests for future error corrections"? :D
 
Back
Top