class AS_BOUND_CREATE_EXPR < $AS_EXPR
****
Bound object constructor expressions.


Ancestors
$AS_EXPR $NEXT{_} $AS_NODE $PROG_ERR
AS_EXPR AS_NODE



Public


Readable Attributes
attr call:AS_CALL_EXPR;
**** The call.
attr is_iter:BOOL;
**** True for iter creation.
attr next:T;
**** Pointer to next element in list, if any.
attr ret:AS_TYPE_SPEC;
**** Return type, void if none specified.
attr source:SFILE_ID;
**** The origin of a node in a Sather source file.

Writable Attributes
attr call:AS_CALL_EXPR;
**** The call.
attr is_iter:BOOL;
**** True for iter creation.
attr next:T;
**** Pointer to next element in list, if any.
attr ret:AS_TYPE_SPEC;
**** Return type, void if none specified.
attr source:SFILE_ID;
**** The origin of a node in a Sather source file.

Features
append(l:T)
**** Append the list `l' to the end of the list self. self may not be void but `l' may be.
create: SAME
**** A new object with default initialization.
insert(e:T)
**** Insert the single element `e' after self. Neither may be void, `e.next' must be void.
size:INT
**** The number of elements in the list starting with self. Self may be void.