package Tree;

/**
 * Return from a function call.
 *
 * @author Samuel A. Rebelsky
 * @version 1.0 of December 1998
 */
public class RETURN extends Stm {
  // +--------+--------------------------------------------------
  // | Fields |
  // +--------+


  // +--------------+--------------------------------------------
  // | Constructors |
  // +--------------+

  /** 
   * Build a new call to a built-in operation.
   */
  public RETURN() {
  } // RETURN()


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

  /**
   * Get all of the subexpressions.
   */
  public ExpList kids() {
    return null;
  } // kids()

  /**
   * Build a new call using function and subexpressions.
   */
  public Stm build(ExpList kids) {
    return new RETURN();
  } // build(ExpList)
  
} // class RETURN

