scan.sa


Generated by gen_html_sa_files from ICSI. Contact gomes@icsi.berkeley.edu for details
 
------------------------->  GNU Sather - sourcefile  <-------------------------
-- Copyright (C) 2000 by K Hopper, University of Waikato, New Zealand        --
-- This file is part of the GNU Sather library. It is free software; you may --
-- redistribute  and/or modify it under the terms of the GNU Library General --
-- Public  License (LGPL)  as published  by the  Free  Software  Foundation; --
-- either version 2 of the license, or (at your option) any later version.   --
-- This  library  is distributed  in the  hope that it will  be  useful, but --
-- WITHOUT ANY WARRANTY without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. See Doc/LGPL for more details.       --
-- The license text is also available from:  Free Software Foundation, Inc., --
-- 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA                     --
-------------->  Please email comments to <bug-sather@gnu.org>  <--------------


immutable class CONVERSION_RESULTS < $ENUMS{CONVERSION_RESULTS}

immutable class CONVERSION_RESULTS < $ENUMS{CONVERSION_RESULTS} is -- This class enumerates the possible result of a value conversion from -- a string to a value of the entity described. -- Version 1.0 Sep 98. Copyright K Hopper,U of Waikato -- Development History -- ------------------- -- Date Who By Detail -- ---- ------ ------ -- 3 Sep 98 kh Original from Modula-2 standard include ENUM{CONVERSION_RESULTS} ; private const val_count : CARD := 4 ; -- The next routines provide the enumeration itself. All_Right : SAME is return enum(1) end ; Bad_Format : SAME is return enum(2) end ; Out_of_Range : SAME is return enum(3) end ; Empty : SAME is return enum(4) end ; end ; -- CONVERSION_RESULTS