class AM_STMT


Ancestors
AM

Descendants
AM_TYPECASE_STMT AM_UNLOCK_STMT AM_IF_STMT AM_ASSERT_STMT
AM_SYNC_STMT AM_RAISE_STMT AM_INVARIANT_STMT AM_PREFETCH_STMT
AM_CASE_STMT AM_EXPR_STMT AM_COMMENT_STMT AM_ATTACH_STMT
AM_WAITFOR_STMT AM_LOCK_STMT AM_BREAK_STMT AM_LOOP_STMT
AM_POST_STMT AM_WITH_NEAR_STMT AM_YIELD_STMT AM_ASSIGN_STMT
AM_PRE_STMT AM_PROTECT_STMT AM_INITIAL_STMT AM_RETURN_STMT



Public


Readable Attributes
attr next:T;
**** Pointer to next element in list, if any.
attr source:SFILE_ID;
**** Information identifying the origin of a node in Sather source. It encodes the file and the character offset of the originating construct.

Writable Attributes
attr next:T;
**** Pointer to next element in list, if any.
attr source:SFILE_ID;
**** Information identifying the origin of a node in Sather source. It encodes the file and the character offset of the originating construct.

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(source:SFILE_ID):SAME
**** A new object for the location `source' 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.