package IRT;

/**
 * Information about accessing variables in the current frame,
 * computed during the Tiger compilation process.  
 * <p>
 * <strong>History</strong>
 * <dl>
 * <dt>8 December 1998 (version 0.1)
 * </dl>
 *
 * @author Samuel A. Rebelsky
 * @author Andrew Appel
 * @version 0.1 of 8 December 1998
 */
public class InFrame extends Frame.Access {
  // +--------+--------------------------------------------------
  // | Fields |
  // +--------+

  /**
   * The offset from the start of the frame, in words.
   */
  int offset;


  // +---------+-------------------------------------------------
  // | Methods |
  // +---------+

} // class InFrame

