class AS_CLASS_DEF < $AS_NODE
****
The definition of a class.


Flattened version is here

Ancestors
$AS_NODE $PROG_ERR AS_NODE



Public


Readable Attributes
attr body:$AS_CLASS_ELT;
**** The body of the class.
attr kind:INT;
**** One of imm, ref, abs, ext. if any.
attr name:IDENT;
**** Name of the class. if any.
attr over:AS_TYPE_SPEC;
**** List of over children in the type graph.
attr params:AS_PARAM_DEC;
**** List of parameter declarations, if any.
attr under:AS_TYPE_SPEC;
**** List of parents in the type graph.

Writable Attributes
attr body:$AS_CLASS_ELT;
**** The body of the class.
attr kind:INT;
**** One of imm, ref, abs, ext. if any.
attr name:IDENT;
**** Name of the class. if any.
attr over:AS_TYPE_SPEC;
**** List of over children in the type graph.
attr params:AS_PARAM_DEC;
**** List of parameter declarations, if any.
attr under:AS_TYPE_SPEC;
**** List of parents in the type graph.

Constants
const abs:INT:=3;
**** Abstract class.
const c_ext:INT:=5;
**** External C class.
const fortran_ext:INT:=6;
**** External Fortran class
const imm:INT:=1;
**** Value class.
const part:INT:=4;
**** Partial class.
const ref:INT:=2;
**** Reference class.
const spr:INT:=7;
**** Spread class (pSather).
const unused:INT:=0;
****

Features