home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 3 / AACD03.BIN / AACD / Programming / sofa / archive / SmallEiffel.lha / SmallEiffel / lib_se / when_item_1.e < prev    next >
Text File  |  1999-06-05  |  3KB  |  115 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 WHEN_ITEM_1
  17. --
  18. -- To store a single value of a when clause in an inspect instruction.
  19. --
  20. -- Exemple :
  21. --          inspect ...
  22. --              when foo, bar, then ...
  23. --
  24.  
  25. inherit WHEN_ITEM;
  26.  
  27. creation {E_WHEN,WHEN_ITEM_1}
  28.    make
  29.  
  30. feature {ANY}
  31.  
  32.    expression: EXPRESSION;
  33.  
  34.    expression_value: INTEGER;
  35.  
  36. feature {NONE}
  37.  
  38.    make(v: like expression) is
  39.       require
  40.          v /= Void
  41.       do
  42.          expression := v;
  43.       ensure
  44.          expression = v
  45.       end;
  46.  
  47. feature {ANY}
  48.  
  49.    start_position: POSITION is
  50.       do
  51.          Result := expression.start_position;
  52.       end;
  53.  
  54. feature {E_WHEN, WHEN_ITEM_1}
  55.  
  56.    to_runnable_integer(ew: like e_when): like Current is
  57.       local
  58.          ct: TYPE;
  59.          e: like expression;
  60.       do
  61.          if e_when = Void then
  62.             e_when := ew;
  63.             ct := small_eiffel.top_rf.current_type;
  64.             e := expression.to_runnable(ct);
  65.             if e /= Void and then e.result_type.is_integer then
  66.                expression := e;
  67.                expression_value := expression.to_integer;
  68.                e_when.add_when_item_1(Current);
  69.             else
  70.                error(expression.start_position,fz_biv);
  71.             end;
  72.             Result := Current;
  73.          else
  74.             !!Result.make(expression);
  75.             Result := Result.to_runnable_integer(ew);
  76.          end;
  77.       end;
  78.  
  79.    to_runnable_character(ew: like e_when): like Current is
  80.       local
  81.          ct: TYPE;
  82.          e: like expression;
  83.       do
  84.          if e_when = Void then
  85.             e_when := ew;
  86.             ct := small_eiffel.top_rf.current_type;
  87.             e := expression.to_runnable(ct);
  88.             if e /= Void and then e.result_type.is_character then
  89.                expression := e;
  90.                expression_value := expression.to_integer;
  91.                e_when.add_when_item_1(Current);
  92.             else
  93.                error(expression.start_position,fz_bcv);
  94.             end;
  95.             Result := Current;
  96.          else
  97.             !!Result.make(expression);
  98.             Result := Result.to_runnable_character(ew);
  99.          end;
  100.       end;
  101.  
  102.    pretty_print is
  103.       do
  104.          expression.pretty_print;
  105.       end;
  106.  
  107. feature {E_WHEN}
  108.  
  109.    eval(exp: INTEGER): BOOLEAN is
  110.       do
  111.          Result := expression_value = exp;
  112.       end;
  113.  
  114. end -- WHEN_ITEM_1
  115.