home *** CD-ROM | disk | FTP | other *** search
/ Amiga ACS 1998 #4 / amigaacscoverdisc1998-041998.iso / utilities / shareware / dev / ppcsmalleiffel / lib_se / frozen_string_list.e < prev    next >
Encoding:
Text File  |  1998-01-16  |  11.4 KB  |  277 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://www.loria.fr/SmallEiffel
  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 FROZEN_STRING_LIST
  17.    --   
  18.    -- Shared Frozen String list.
  19.    --
  20.  
  21. feature {NONE} -- Frozen list of some keywords :
  22.  
  23.    fz_alias:              STRING is "alias";
  24.    fz_all:                STRING is "all";
  25.    fz_as:                 STRING is "as";
  26.    fz_check:              STRING is "check";
  27.    fz_class:              STRING is "class";
  28.    fz_creation:           STRING is "creation";
  29.    fz_debug:              STRING is "debug";
  30.    fz_deferred:           STRING is "deferred";
  31.    fz_do:                 STRING is "do";
  32.    fz_else:               STRING is "else";
  33.    fz_elseif:             STRING is "elseif";
  34.    fz_end:                STRING is "end";
  35.    fz_ensure:             STRING is "ensure";
  36.    fz_expanded:           STRING is "expanded";
  37.    fz_export:             STRING is "export";
  38.    fz_external:           STRING is "external";
  39.    fz_false:              STRING is "false";
  40.    fz_feature:            STRING is "feature";
  41.    fz_from:               STRING is "from";
  42.    fz_frozen:             STRING is "frozen";
  43.    fz_if:                 STRING is "if";
  44.    fz_indexing:           STRING is "indexing";
  45.    fz_infix:              STRING is "infix";
  46.    fz_inherit:            STRING is "inherit";
  47.    fz_inspect:            STRING is "inspect";
  48.    fz_invariant:          STRING is "invariant";
  49.    fz_is:                 STRING is "is";
  50.    fz_jvm_invokestatic:   STRING is "JVM_invokestatic";
  51.    fz_jvm_invokevirtual:  STRING is "JVM_invokevirtual";
  52.    fz_like:               STRING is "like";
  53.    fz_local:              STRING is "local";
  54.    fz_loop:               STRING is "loop";
  55.    fz_obsolete:           STRING is "obsolete";
  56.    fz_old:                STRING is "old";
  57.    fz_once:               STRING is "once";
  58.    fz_open:               STRING is "fopen";
  59.    fz_prefix:             STRING is "prefix";
  60.    fz_redefine:           STRING is "redefine";
  61.    fz_rename:             STRING is "rename";
  62.    fz_require:            STRING is "require";
  63.    fz_rescue:             STRING is "rescue";
  64.    fz_retry:              STRING is "retry";
  65.    fz_select:             STRING is "select";
  66.    fz_separate:           STRING is "separate";
  67.    fz_strip:              STRING is "strip";
  68.    fz_then:               STRING is "then";
  69.    fz_true:               STRING is "true";
  70.    fz_undefine:           STRING is "undefine";
  71.    fz_unique:             STRING is "unique";
  72.    fz_until:              STRING is "until";
  73.    fz_variant:            STRING is "variant";
  74.    fz_when:               STRING is "when";
  75.  
  76. feature {NONE} -- Frozen list of messages :
  77.  
  78.    fz_arrow_id:        STRING is "->id";
  79.    fz_bad_anchor:      STRING is "Bad anchor.";
  80.    fz_bad_argument:    STRING is "Bad argument.";
  81.    fz_bad_arguments:   STRING is "Bad arguments.";
  82.    fz_bad_assertion:   STRING is "Bad Assertion.";
  83.    fz_bcv:             STRING is "Bad CHARACTER value.";
  84.    fz_bga:             STRING is "Bad generic argument.";
  85.    fz_biv:             STRING is "Bad INTEGER value.";
  86.    fz_bnga:            STRING is "Bad number of generic arguments.";
  87.    fz_blhsoa:          STRING is "Bad left hand side of assignment.";
  88.    fz_brhsoa:          STRING is "Bad right hand side of assignment.";
  89.    fz_cad:             STRING is "Cyclic anchored definition.";
  90.    fz_cbe:             STRING is " cannot be expanded. ";
  91.    fz_cnf:             STRING is "Class not found.";
  92.    fz_dot:             STRING is ".";
  93.    fz_desc:            STRING is "Deleted extra semi-colon.";
  94.    fz_iinaiv:          STRING is "It is not an integer value.";
  95.    fz_ich:             STRING is "Incompatible headings.";
  96.    fz_inako:           STRING is " is not a kind of ";
  97.    fz_is_invalid:      STRING is " is invalid.";
  98.    fz_is_not_boolean:  STRING is " is not BOOLEAN.";
  99.    fz_not_found:       STRING is " Not found.";
  100.    fz_error_stars:     STRING is "****** ";
  101.    fz_jvm_error:       STRING is "Incompatible with Java bytecode.";
  102.  
  103. feature {NONE} -- Frozen list of other names :
  104.  
  105.    fz_bin:                     STRING is "bin";
  106.    fz_bit_foo:                 STRING is "BIT ";
  107.    fz_char:                    STRING is "char";
  108.    fz_clean:                   STRING is "clean";
  109.    fz_close_c_comment:         STRING is "*/";
  110.    fz_compile:                 STRING is "compile";
  111.    fz_cast_gcfsh_star:         STRING is "(gcfsh*)";
  112.    fz_cast_gcnah_star:         STRING is "(gcnah*)";
  113.    fz_cast_t0_star:            STRING is "(T0*)";
  114.    fz_cast_void_star:          STRING is "(void*)";
  115.    fz_c_eq:                    STRING is "==";
  116.    fz_c_if_neq_null:           STRING is "if(NULL!=";
  117.    fz_c_if_eq_null:            STRING is "if(NULL==";
  118.    fz_c_inlinewithcurrent:     STRING is "C_InlineWithCurrent";
  119.    fz_c_inlinewithoutcurrent:  STRING is "C_InlineWithoutCurrent";
  120.    fz_c_neq:                   STRING is "!=";
  121.    fz_c_no_args_procedure:     STRING is "();%N";
  122.    fz_c_no_args_function:      STRING is "()";
  123.    fz_c_shift_left:            STRING is "<<";
  124.    fz_c_shift_right:           STRING is ">>";
  125.    fz_c_void_args:             STRING is "(void)";
  126.    fz_c_withcurrent:           STRING is "C_WithCurrent";
  127.    fz_c_withoutcurrent:        STRING is "C_WithoutCurrent";
  128.    fz_define:                  STRING is "define";
  129.    fz_double:                  STRING is "double";
  130.    fz_exit:                    STRING is "exit";
  131.    fz_extern:                  STRING is "extern ";
  132.    fz_float:                   STRING is "float";
  133.    fz_gc:                      STRING is "gc";
  134.    fz_gc_info:                 STRING is "gc_info";
  135.    fz_gc_mark:                 STRING is "gc_mark";
  136.    fz_gc_sweep:                STRING is "gc_sweep";
  137.    fz_gc_sweep_pool:           STRING is "gc_sweep_pool";
  138.    fz_gcc:                     STRING is "gcc";
  139.    fz_int:                     STRING is "int";
  140.    fz_jvm_root:                STRING is "_any"
  141.    fz_like_foo:                STRING is "like ";
  142.    fz_main:                    STRING is "main";
  143.    fz_new:                     STRING is "new";
  144.    fz_new_pool:                STRING is "new_pool";
  145.    fz_null:                    STRING is "NULL";
  146.    fz_open_c_comment:          STRING is "/*";
  147.    fz_printf:                  STRING is "printf";
  148.    fz_return:                  STRING is "return";
  149.    fz_se:                      STRING is "SmallEiffel";
  150.    fz_se_cmpt:                 STRING is "se_cmpT";
  151.    fz_sizeof:                  STRING is "sizeof";
  152.    fz_static:                  STRING is "static ";
  153.    fz_struct:                  STRING is "struct ";
  154.    fz_sys:                     STRING is "sys";
  155.    fz_system_se:               STRING is "system.se";
  156.    fz_t0_star:                 STRING is "T0*";
  157.    fz_t7_star:                 STRING is "T7*";
  158.    fz_to_t:                    STRING is "toT";
  159.    fz_typedef:                 STRING is "typedef ";
  160.    fz_unsigned:                STRING is "unsigned";
  161.    fz_void:                    STRING is "void";
  162.  
  163. feature {NONE} -- Frozen list numbered not in UNIQUE_STRING :
  164.  
  165.    fz_00: STRING is ";%N";
  166.    fz_01: STRING is "File %"";
  167.    fz_02: STRING is "Done.%N";
  168.    fz_03: STRING is "%"."
  169.    fz_04: STRING is "Pre-Computed Once Function";
  170.    fz_05: STRING is "(s):%N";
  171.    fz_06: STRING is " is concerned.";
  172.    fz_07: STRING is " is ever created.";
  173.    fz_08: STRING is "Unknown flag : ";
  174.    fz_09: STRING is "Feature %"";
  175.    fz_10: STRING is " : %%d\n%",";
  176.    fz_11: STRING is "{%N";
  177.    fz_12: STRING is "}%N";
  178.    fz_13: STRING is "))";
  179.    fz_14: STRING is ");%N";
  180.    fz_15: STRING is "return R;%N}%N";
  181.    fz_16: STRING is "));%N"
  182.    fz_17: STRING is "((";
  183.    fz_18: STRING is "%"%N";
  184.    fz_19: STRING is ")V";
  185.    fz_21: STRING is "Ljava/lang/Object;";
  186.    fz_23: STRING is "([Ljava/lang/String;)V";
  187.    fz_24: STRING is "string";
  188.    fz_25: STRING is "java/io/PrintStream";
  189.    fz_26: STRING is "java/lang/Float";
  190.    fz_27: STRING is "(I)V";
  191.    fz_28: STRING is "_initialize";
  192.    fz_29: STRING is "()V";
  193.    fz_30: STRING is "I";
  194.    fz_31: STRING is "[B";
  195.    fz_32: STRING is "java/lang/String";
  196.    fz_33: STRING is "getBytes";
  197.    fz_34: STRING is "()[B";
  198.    fz_35: STRING is "<init>";
  199.    fz_36: STRING is "java/lang/System";
  200.    fz_37: STRING is "in";
  201.    fz_38: STRING is "Ljava/io/InputStream;";
  202.    fz_39: STRING is "out";
  203.    fz_40: STRING is "Ljava/io/PrintStream;";
  204.    fz_41: STRING is "B";
  205.    fz_42: STRING is "close";
  206.    fz_49: STRING is "err";
  207.    fz_50: STRING is "Assertion failed.";
  208.    fz_51: STRING is "println";
  209.    fz_52: STRING is "traceInstructions";
  210.    fz_53: STRING is "java/lang/Runtime";
  211.    fz_54: STRING is "(Z)V";
  212.    fz_55: STRING is "getRuntime";
  213.    fz_56: STRING is "()Ljava/lang/Runtime;";
  214.    fz_57: STRING is "(Ljava/lang/String;)V";
  215.    fz_58: STRING is "check_flag";
  216.    fz_59: STRING is "0.";
  217.    fz_60: STRING is "valueOf0";
  218.    fz_61: STRING is "(Ljava/lang/String;)D";
  219.    fz_62: STRING is "java/lang/Double";
  220.    fz_63: STRING is "toString";
  221.    fz_64: STRING is "(D)Ljava/lang/String;";
  222.    fz_65: STRING is "([BII)V";
  223.    fz_66: STRING is "String";
  224.    fz_67: STRING is "java/io/FileInputStream";
  225.    fz_68: STRING is "(Ljava/lang/String;)V";
  226.    fz_69: STRING is "java/io/InputStream";
  227.    fz_70: STRING is "read";
  228.    fz_71: STRING is "()I";
  229.    fz_72: STRING is "java/io/FileOutputStream";
  230.    fz_73: STRING is "Z";
  231.    fz_74: STRING is "args";
  232.    fz_75: STRING is "[Ljava/lang/String;";
  233.    fz_76: STRING is "<clinit>";
  234.    fz_77: STRING is "D";
  235.    fz_78: STRING is "F";
  236.    fz_79: STRING is "getProperty";
  237.    fz_80: STRING is "(Ljava/lang/String;)Ljava/lang/String;";
  238.    fz_81: STRING is "java/lang/Integer";
  239.    fz_82: STRING is "parseInt";
  240.    fz_83: STRING is "(Ljava/lang/String;)I";
  241.    fz_84: STRING is "java/lang/Throwable";
  242.    fz_85: STRING is "java/io/File";
  243.    fz_86: STRING is "exists";
  244.    fz_87: STRING is "()Z";
  245.    fz_88: STRING is "(Ljava/io/File;)V";
  246.    fz_89: STRING is "exec";
  247.    fz_90: STRING is "(Ljava/lang/String;)Ljava/lang/Process;";
  248.    fz_91: STRING is "waitFor";
  249.    fz_92: STRING is "java/lang/Process";
  250.    fz_93: STRING is "java/lang/Math";
  251.    fz_94: STRING is "(D)D";
  252.    fz_95: STRING is "MAX_VALUE";
  253.    fz_96: STRING is "()D";
  254.    fz_97: STRING is "()F";
  255.    fz_98: STRING is "MIN_VALUE";
  256.    fz_99: STRING is "(DD)D";
  257.    fz_a0: STRING is "java/util/BitSet";
  258.    fz_a1: STRING is "equals";
  259.    fz_a2: STRING is "get";
  260.    fz_a3: STRING is "(I)Z";
  261.    fz_a4: STRING is "set";
  262.    fz_a5: STRING is "clear";
  263.    fz_a6: STRING is "clone";
  264.    fz_a7: STRING is "()Ljava/lang/Object;";
  265.    fz_a8: STRING is "(Ljava/lang/Object;)Z";
  266.    fz_a9: STRING is "Ljava/util/BitSet;";
  267.    fz_b1: STRING is "(Ljava/util/BitSet;)V";
  268.    fz_b2: STRING is "delete";
  269.    fz_b3: STRING is "renameTo";
  270.    fz_b4: STRING is "(Ljava/io/File;)Z";
  271.    fz_b5: STRING is ")->_";
  272.    fz_b6: STRING is ".%N";
  273.    fz_b0: STRING is "%".%N";
  274.  
  275. end -- FROZEN_STRING_LIST
  276.  
  277.