home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 3 / AACD03.BIN / AACD / Programming / sofa / archive / SmallEiffel.lha / SmallEiffel / lib_se / aliased_string_list.e < prev    next >
Text File  |  1999-06-05  |  9KB  |  196 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. deferred class ALIASED_STRING_LIST
  17.    --
  18.    -- The initial set of STRING in STRING_ALIASER.
  19.    --
  20.  
  21. feature {NONE}
  22.  
  23.    -- Hard coded class names :
  24.  
  25.    as_any:              STRING is "ANY";
  26.    as_array:            STRING is "ARRAY";
  27.    as_bit:              STRING is "BIT";
  28.    as_bit_n:            STRING is "BIT_N";
  29.    as_bit_n_ref:        STRING is "BIT_N_REF";
  30.    as_boolean:          STRING is "BOOLEAN";
  31.    as_boolean_ref:      STRING is "BOOLEAN_REF";
  32.    as_character:        STRING is "CHARACTER";
  33.    as_character_ref:    STRING is "CHARACTER_REF";
  34.    as_dictionary:       STRING is "DICTIONARY";
  35.    as_double:           STRING is "DOUBLE";
  36.    as_double_ref:       STRING is "DOUBLE_REF";
  37.    as_exceptions:       STRING is "EXCEPTIONS";
  38.    as_fixed_array:      STRING is "FIXED_ARRAY";
  39.    as_general:          STRING is "GENERAL";
  40.    as_integer:          STRING is "INTEGER";
  41.    as_integer_ref:      STRING is "INTEGER_REF";
  42.    as_memory:           STRING is "MEMORY";
  43.    as_native_array:     STRING is "NATIVE_ARRAY";
  44.    as_none:             STRING is "NONE";
  45.    as_platform:         STRING is "PLATFORM";
  46.    as_pointer:          STRING is "POINTER";
  47.    as_pointer_ref:      STRING is "POINTER_REF";
  48.    as_real:             STRING is "REAL";
  49.    as_real_ref:         STRING is "REAL_REF";
  50.    as_string:           STRING is "STRING";
  51.    as_std_file_read:    STRING is "STD_FILE_READ";
  52.    as_std_file_write:   STRING is "STD_FILE_WRITE";
  53.  
  54.  
  55.  
  56.    -- Operator/Infix/Prefix list :
  57.  
  58.    as_and:                   STRING is "and";
  59.    as_and_then:              STRING is "and then";
  60.    as_at:                    STRING is "@";
  61.    as_backslash_backslash:   STRING is "\\";
  62.    as_eq:                    STRING is "=";
  63.    as_ge:                    STRING is ">=";
  64.    as_gt:                    STRING is ">";
  65.    as_implies:               STRING is "implies";
  66.    as_le:                    STRING is "<=";
  67.    as_lt:                    STRING is "<";
  68.    as_minus:                 STRING is "-";
  69.    as_muls:                  STRING is "*";
  70.    as_neq:                   STRING is "/=";
  71.    as_not:                   STRING is "not";
  72.    as_or:                    STRING is "or";
  73.    as_or_else:               STRING is "or else";
  74.    as_plus:                  STRING is "+";
  75.    as_pow:                   STRING is "^";
  76.    as_shift_left:            STRING is "@<<";
  77.    as_shift_right:           STRING is "@>>";
  78.    as_slash:                 STRING is "/";
  79.    as_slash_slash:           STRING is "//";
  80.    as_std_neq:               STRING is "#";
  81.    as_xor:                   STRING is "xor";
  82.  
  83.  
  84.  
  85.    -- Hard coded feature names :
  86.  
  87.    as_add_last:                 STRING is "add_last";
  88.    as_blank:                    STRING is "blank";
  89.    as_bitn:                     STRING is "bit_n";
  90.    as_boolean_bits:             STRING is "Boolean_bits";
  91.    as_calloc:                   STRING is "calloc";
  92.    as_capacity:                 STRING is "capacity";
  93.    as_character_bits:           STRING is "Character_bits";
  94.    as_clear_all:                STRING is "clear_all";
  95.    as_count:                    STRING is "count";
  96.    as_code:                     STRING is "code";
  97.    as_conforms_to:              STRING is "conforms_to";
  98.    as_copy:                     STRING is "copy";
  99.    as_c_inline_c:               STRING is "c_inline_c";
  100.    as_c_inline_h:               STRING is "c_inline_h";
  101.    as_dispose:                  STRING is "dispose";
  102.    as_double_bits:              STRING is "Double_bits";
  103.    as_double_floor:             STRING is "double_floor";
  104.    as_die_with_code:            STRING is "die_with_code";
  105.    as_element_sizeof:           STRING is "element_sizeof";
  106.    as_eof_code:                 STRING is "eof_code";
  107.    as_exception:                STRING is "exception";
  108.    as_fclose:                   STRING is "fclose";
  109.    as_feof:                     STRING is "feof";
  110.    as_first:                    STRING is "first";
  111.    as_floor:                    STRING is "floor";
  112.    as_flush_stream:             STRING is "flush_stream";
  113.    as_free:                     STRING is "free";
  114.    as_from_pointer:             STRING is "from_pointer";
  115.    as_generating_type:          STRING is "generating_type";
  116.    as_generator:                STRING is "generator";
  117.    as_io:                       STRING is "io";
  118.    as_integer_bits:             STRING is "Integer_bits";
  119.    as_is_basic_expanded_type:   STRING is "is_basic_expanded_type";
  120.    as_is_expanded_type:         STRING is "is_expanded_type";
  121.    as_is_equal:                 STRING is "is_equal";
  122.    as_is_not_null:              STRING is "is_not_null";
  123.    as_item:                     STRING is "item";
  124.    as_last:                     STRING is "last";
  125.    as_lower:                    STRING is "lower";
  126.    as_malloc:                   STRING is "malloc";
  127.    as_make:                     STRING is "make";
  128.    as_minimum_character_code:   STRING is "Minimum_character_code";
  129.    as_minimum_double:           STRING is "Minimum_double";
  130.    as_minimum_integer:          STRING is "Minimum_integer";
  131.    as_minimum_real:             STRING is "Minimum_real";
  132.    as_maximum_character_code:   STRING is "Maximum_character_code";
  133.    as_maximum_double:           STRING is "Maximum_double";
  134.    as_maximum_integer:          STRING is "Maximum_integer";
  135.    as_maximum_real:             STRING is "Maximum_real";
  136.    as_object_size:              STRING is "object_size";
  137.    as_pointer_bits:             STRING is "Pointer_bits";
  138.    as_pointer_size:             STRING is "pointer_size";
  139.    as_print:                    STRING is "print";
  140.    as_print_on:                 STRING is "print_on";
  141.    as_print_run_time_stack:     STRING is "print_run_time_stack";
  142.    as_put:                      STRING is "put";
  143.    as_put_0:                    STRING is "put_0";
  144.    as_put_1:                    STRING is "put_1";
  145.    as_raise_exception:          STRING is "raise_exception";
  146.    as_read_byte:                STRING is "read_byte";
  147.    as_real_bits:                STRING is "Real_bits";
  148.    as_realloc:                  STRING is "realloc";
  149.    as_se_argc:                  STRING is "se_argc";
  150.    as_se_argv:                  STRING is "se_argv";
  151.    as_se_getenv:                STRING is "se_getenv";
  152.    as_se_remove:                STRING is "se_remove";
  153.    as_se_rename:                STRING is "se_rename";
  154.    as_se_string2double:         STRING is "se_string2double";
  155.    as_se_system:                STRING is "se_system";
  156.    as_sfr_open:                 STRING is "sfr_open";
  157.    as_sfw_open:                 STRING is "sfw_open";
  158.    as_signal_number:            STRING is "signal_number";
  159.    as_sprintf_double:           STRING is "sprintf_double";
  160.    as_sprintf_pointer:          STRING is "sprintf_pointer";
  161.    as_standard_copy:            STRING is "standard_copy";
  162.    as_standard_is_equal:        STRING is "standard_is_equal";
  163.    as_standard_twin:            STRING is "standard_twin";
  164.    as_stderr:                   STRING is "stderr";
  165.    as_stdin:                    STRING is "stdin";
  166.    as_stdout:                   STRING is "stdout";
  167.    as_std_error:                STRING is "std_error";
  168.    as_std_input:                STRING is "std_input";
  169.    as_std_output:               STRING is "std_output";
  170.    as_storage:                  STRING is "storage";
  171.    as_to_bit:                   STRING is "to_bit";
  172.    as_to_character:             STRING is "to_character";
  173.    as_to_double:                STRING is "to_double";
  174.    as_to_integer:               STRING is "to_integer";
  175.    as_to_pointer:               STRING is "to_pointer";
  176.    as_to_real:                  STRING is "to_real";
  177.    as_trace_switch:             STRING is "trace_switch";
  178.    as_truncated_to_integer:     STRING is "truncated_to_integer";
  179.    as_twin:                     STRING is "twin";
  180.    as_upper:                    STRING is "upper";
  181.    as_with_capacity:            STRING is "with_capacity";
  182.    as_write_byte:               STRING is "write_byte";
  183.  
  184.  
  185.    -- Other names :
  186.  
  187.    as_current:                 STRING is "Current";
  188.    as_native_array_character:  STRING is "NATIVE_ARRAY[CHARACTER]";
  189.    as_like_current:            STRING is "like Current";
  190.    as_precursor:               STRING is "Precursor";
  191.    as_result:                  STRING is "Result";
  192.    as_void:                    STRING is "Void";
  193.  
  194. end -- ALIASED_STRING_LIST
  195.  
  196.