home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 3 / AACD03.BIN / AACD / Programming / sofa / archive / SmallEiffel.lha / SmallEiffel / lib_se / rename_pair.e < prev    next >
Text File  |  1999-06-05  |  2KB  |  56 lines

  1. --          This file is part of SmallEiffel The GNU Eiffel Compiler.
  2. --          Copyright (C) 1994-98 LORIA - UHP - CRIN - INRIA - FRANCE
  3. --            Dominique COLNET and Suzanne COLLIN - colnet@loria.fr
  4. --                       http://SmallEiffel.loria.fr
  5. -- SmallEiffel is  free  software;  you can  redistribute it and/or modify it
  6. -- under the terms of the GNU General Public License as published by the Free
  7. -- Software  Foundation;  either  version  2, or (at your option)  any  later
  8. -- version. SmallEiffel is distributed in the hope that it will be useful,but
  9. -- WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  10. -- or  FITNESS FOR A PARTICULAR PURPOSE.   See the GNU General Public License
  11. -- for  more  details.  You  should  have  received a copy of the GNU General
  12. -- Public  License  along  with  SmallEiffel;  see the file COPYING.  If not,
  13. -- write to the  Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  14. -- Boston, MA 02111-1307, USA.
  15. --
  16. class RENAME_PAIR
  17.    --
  18.    -- To store a rename pair of Eiffel construct :
  19.    --    "inherit ... rename ... as ... end"
  20.    --
  21.  
  22. inherit GLOBALS;
  23.  
  24. creation make
  25.  
  26. feature
  27.  
  28.    old_name, new_name: FEATURE_NAME;
  29.  
  30.    make(on, nn: like old_name) is
  31.       require
  32.          on /= Void;
  33.          nn /= Void
  34.       do
  35.          if on.to_string = nn.to_string then
  36.             eh.add_position(on.start_position);
  37.             eh.add_position(nn.start_position);
  38.             fatal_error("New name and old name must be different.");
  39.          end;
  40.          old_name := on;
  41.          new_name := nn;
  42.       ensure
  43.          old_name = on;
  44.          new_name = nn
  45.       end;
  46.  
  47.    pretty_print is
  48.       do
  49.          old_name.declaration_pretty_print;
  50.          fmt.keyword("as");
  51.          new_name.declaration_pretty_print;
  52.       end;
  53.  
  54. end -- RENAME_PAIR
  55.  
  56.