/src/tools/semantics/code/liberty_expression.e

http://github.com/tybor/Liberty · Specman e · 51 lines · 29 code · 8 blank · 14 comment · 1 complexity · fe893dc7657fb27808f743be6198f233 MD5 · raw file

  1. -- This file is part of Liberty Eiffel.
  2. --
  3. -- Liberty Eiffel is free software: you can redistribute it and/or modify
  4. -- it under the terms of the GNU General Public License as published by
  5. -- the Free Software Foundation, version 3 of the License.
  6. --
  7. -- Liberty Eiffel is distributed in the hope that it will be useful,
  8. -- but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. -- GNU General Public License for more details.
  11. --
  12. -- You should have received a copy of the GNU General Public License
  13. -- along with Liberty Eiffel. If not, see <http://www.gnu.org/licenses/>.
  14. --
  15. deferred class LIBERTY_EXPRESSION
  16. inherit
  17. LIBERTY_TAGGED
  18. insert
  19. LIBERTY_POSITIONABLE
  20. LIBERTY_REACHABLE
  21. VISITABLE
  22. feature {ANY}
  23. result_type: LIBERTY_TYPE is
  24. deferred
  25. ensure
  26. Result /= Void or else result_type_may_be_void
  27. end
  28. result_type_may_be_void: BOOLEAN is
  29. do
  30. Result := is_agent_call
  31. end
  32. is_agent_call: BOOLEAN is False
  33. is_open_argument: BOOLEAN is False
  34. specialized_in (a_type: LIBERTY_ACTUAL_TYPE): like Current is
  35. require
  36. a_type /= Void
  37. deferred
  38. ensure
  39. Result /= Void
  40. end
  41. invariant
  42. (not result_type_may_be_void) implies result_type /= Void
  43. end