1 dcl       1 symbol_table                based(p),
2           2 node_type                   fixed bin(15),
3           2 dcl_type                    fixed bin(15),      /* explicit,contextual,implicit,compiler made     */
4           2 block_node                  ptr,                /* ptr to the block which owns this declaration   */
5           2 reference_list              ptr,                /* ptr to a chain of references to this dcl       */
6           2 token                       ptr,                /* ptr to the token table entry for this name     */
7           2 next                        ptr,                /* ptr to the next dcl in this block              */
8           2 multi_use                   ptr,                /* ptr to another use of this identifier          */
9           2 attributes                  ptr;                /* ptr to the attribute block of this declaration */