home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 3 / AACD03.BIN / AACD / Programming / sofa / archive / SmallEiffel.lha / SmallEiffel / lib_se / e_retry.e < prev    next >
Text File  |  1999-06-05  |  3KB  |  100 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 E_RETRY
  17.    --
  18.    -- To store instruction "retry" for exception handling.
  19.    --
  20.  
  21. inherit INSTRUCTION;
  22.  
  23. creation make
  24.  
  25. feature
  26.  
  27.    start_position: POSITION;
  28.  
  29. feature {NONE}
  30.  
  31.    run_feature: RUN_FEATURE;
  32.          -- Corresponding one when runnable.
  33.  
  34. feature {NONE}
  35.  
  36.    make(sp: like start_position) is
  37.       do
  38.          start_position := sp;
  39.       end;
  40.  
  41. feature
  42.  
  43.    end_mark_comment: BOOLEAN is false;
  44.  
  45.    is_pre_computable: BOOLEAN is false;
  46.  
  47.    use_current: BOOLEAN is false;
  48.  
  49. feature
  50.  
  51.    afd_check is
  52.       do
  53.       end;
  54.  
  55.    collect_c_tmp is
  56.       do
  57.       end;
  58.  
  59.    compile_to_c is
  60.       do
  61.          if run_control.no_check then
  62.             run_feature.c_assertion_flag;
  63.             cpp.put_string("=1;%N");
  64.          end;
  65.          cpp.put_string("goto retry_tag;%N");
  66.       end;
  67.  
  68.    compile_to_jvm is
  69.       do
  70.          eh.add_position(start_position);
  71.          fatal_error(fz_jvm_error);
  72.       end;
  73.  
  74.    to_runnable(ct: TYPE): like Current is
  75.       local
  76.          rf: RUN_FEATURE;
  77.       do
  78.          rf := small_eiffel.top_rf;
  79.          if run_feature = Void then
  80.             run_feature := rf;
  81.             Result := Current;
  82.          elseif run_feature = rf then
  83.             Result := Current
  84.          else
  85.             !!Result.make(start_position);
  86.             Result := Result.to_runnable(ct);
  87.          end;
  88.       end;
  89.  
  90.    pretty_print is
  91.       do
  92.          fmt.put_string("retry");
  93.          if fmt.semi_colon_flag then
  94.             fmt.put_character(';');
  95.          end;
  96.       end;
  97.  
  98. end -- E_RETRY
  99.  
  100.