home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 3 / AACD03.BIN / AACD / Programming / sofa / archive / SmallEiffel.lha / SmallEiffel / lib_se / infix_name.e < prev    next >
Text File  |  1999-06-05  |  3KB  |  102 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 INFIX_NAME
  17.    --
  18.    -- To store an infix name of some binary operator.
  19.    --
  20.  
  21. inherit FEATURE_NAME;
  22.  
  23. creation make
  24.  
  25. feature
  26.  
  27.    to_string: STRING;
  28.  
  29.    start_position: POSITION;
  30.  
  31.    to_key: STRING;
  32.  
  33. feature
  34.  
  35.    is_frozen: BOOLEAN is false;
  36.  
  37. feature {NONE}
  38.  
  39.    make(n: STRING; sp: like start_position) is
  40.       require
  41.          n.count >= 1;
  42.          n = string_aliaser.item(n);
  43.          sp /= Void
  44.       do
  45.          to_string := n;
  46.          start_position := sp;
  47.          to_key := string_aliaser.for_infix(to_string);
  48.       ensure
  49.          to_string = string_aliaser.item(n);
  50.          start_position = sp;
  51.          to_key = string_aliaser.item(to_key)
  52.       end;
  53.  
  54. feature
  55.  
  56.    mapping_c_in(str: STRING) is
  57.       do
  58.          str.append(to_key);
  59.       end;
  60.  
  61.    declaration_in(str: STRING) is
  62.       do
  63.          str.append(fz_infix);
  64.          str.extend(' ');
  65.          str.extend('%"');
  66.          str.append(to_string);
  67.          str.extend('%"');
  68.       end;
  69.  
  70.    pretty_print is
  71.       do
  72.          fmt.put_string(to_string);
  73.       end;
  74.  
  75.    declaration_pretty_print is
  76.       do
  77.          fmt.keyword(fz_infix);
  78.          fmt.put_character('%"');
  79.          fmt.put_string(to_string);
  80.          fmt.put_character('%"');
  81.       end;
  82.  
  83. feature
  84.  
  85.    short is
  86.       do
  87.          short_print.a_infix_name("Bifn","infix %"",
  88.                                   "Aifn","%"",
  89.                                   Current);
  90.       end;
  91.  
  92. feature {RUN_FEATURE,FEATURE_NAME}
  93.  
  94.    put_cpp_tag is
  95.       do
  96.          cpp.put_string(fz_infix);
  97.          cpp.put_character(' ');
  98.       end;
  99.  
  100. end -- INFIX_NAME
  101.  
  102.