package Frame;

/**
 * A list of information on accessing variables, developed as part
 * of the Tiger compilation process.
 * <p>
 * <strong>History</strong>
 * <dl>
 * <dt>7 December 1998 (version 0.1)
 * <dd>Built from examples in Appel's book.
 * </dl>
 *
 * @author Samuel A. Rebelsky
 * @author Andrew Appel
 * @version 0.1 of 7 December 1998
 */
public abstract class AccessList {
  // +--------+--------------------------------------------------
  // | Fields |
  // +--------+

  /**
   * The first element of the list.
   */
  public Access head;

  /**
   * Everything else in the list.
   */
  public AccessList tail;
  
} // class AccessList
