/test/language/unclassified/test_recursive_once.e

http://github.com/tybor/Liberty · Specman e · 77 lines · 42 code · 10 blank · 25 comment · 1 complexity · 26dd0e7161357a58fdd4390636c17c83 MD5 · raw file

  1. -- This file is part of SmartEiffel The GNU Eiffel Compiler Tools and Libraries.
  2. -- See the Copyright notice at the end of this file.
  3. --
  4. class TEST_RECURSIVE_ONCE
  5. create {}
  6. make
  7. feature {ANY}
  8. proc1val: INTEGER
  9. proc1
  10. once
  11. proc1
  12. proc1val := proc1val + 1
  13. end
  14. fonc1: INTEGER
  15. once
  16. -- *** Result := fonc1 -- No more recursive once ! ***
  17. Result := Result + 1
  18. end
  19. crossf1: INTEGER
  20. once
  21. Result := 3 -- *** crossf2;
  22. end
  23. crossf2: INTEGER
  24. once
  25. Result := 2 + crossf1
  26. end
  27. make
  28. do
  29. proc1
  30. assert(proc1val = 1)
  31. assert(fonc1 = fonc1)
  32. assert(fonc1 = 1)
  33. assert(crossf1 = 3 or crossf1 = 5)
  34. -- What to think of this crazy call :-)
  35. -- It is not really clear in E.T.L. :-(
  36. end
  37. assert (b: BOOLEAN)
  38. do
  39. cpt := cpt + 1
  40. if not b then
  41. std_output.put_string("TEST_RECURSIVE_ONCE: ERROR Test # ")
  42. std_output.put_integer(cpt)
  43. std_output.put_string("%N")
  44. else
  45. -- std_output.put_string("Yes%N");
  46. end
  47. end
  48. cpt: INTEGER
  49. end -- class TEST_RECURSIVE_ONCE
  50. --
  51. -- ------------------------------------------------------------------------------------------------------------------------------
  52. -- Copyright notice below. Please read.
  53. --
  54. -- SmartEiffel is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License,
  55. -- as published by the Free Software Foundation; either version 2, or (at your option) any later version.
  56. -- SmartEiffel is distributed in the hope that it will be useful but WITHOUT ANY WARRANTY; without even the implied warranty
  57. -- of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have
  58. -- received a copy of the GNU General Public License along with SmartEiffel; see the file COPYING. If not, write to the Free
  59. -- Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
  60. --
  61. -- Copyright(C) 1994-2002: INRIA - LORIA (INRIA Lorraine) - ESIAL U.H.P. - University of Nancy 1 - FRANCE
  62. -- Copyright(C) 2003-2006: INRIA - LORIA (INRIA Lorraine) - I.U.T. Charlemagne - University of Nancy 2 - FRANCE
  63. --
  64. -- Authors: Dominique COLNET, Philippe RIBET, Cyril ADRIAN, Vincent CROIZIER, Frederic MERIZEN
  65. --
  66. -- http://SmartEiffel.loria.fr - SmartEiffel@loria.fr
  67. -- ------------------------------------------------------------------------------------------------------------------------------