Pascal Type Unnamed Local

An type entity created when a variable is declared as a record or enumeration variable by giving the record or enumeration description directly in the variable declaration. For example:

VAR 
   MY_REC = RECORD 
       COMP1 : INTEGER; 
       COMP2 : REAL; 
    END; 

This creates an unnamed record type with components 'COMP1' and 'COMP2'. The unnamed record is linked to 'MY_REC' with the 'typed'/'typedby' relations.


Scientific Toolworks, Inc.
http://www.scitools.com