source: trunk/abcl/src/org/armedbear/lisp/Keyword.java

Last change on this file was 15560, checked in by Mark Evenson, 2 years ago

Support for catch tags in slime

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 8.5 KB
Line 
1/*
2 * Keyword.java
3 *
4 * Copyright (C) 2002-2007 Peter Graves
5 * $Id: Keyword.java 15560 2022-02-27 10:40:12Z mevenson $
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 2
10 * of the License, or (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
20 *
21 * As a special exception, the copyright holders of this library give you
22 * permission to link this library with independent modules to produce an
23 * executable, regardless of the license terms of these independent
24 * modules, and to copy and distribute the resulting executable under
25 * terms of your choice, provided that you also meet, for each linked
26 * independent module, the terms and conditions of the license of that
27 * module.  An independent module is a module which is not derived from
28 * or based on this library.  If you modify this library, you may extend
29 * this exception to your version of the library, but you are not
30 * obligated to do so.  If you do not wish to do so, delete this
31 * exception statement from your version.
32 */
33
34package org.armedbear.lisp;
35
36import static org.armedbear.lisp.Lisp.*;
37
38public final class Keyword
39{
40    public static final Symbol
41        ABCL                = internKeyword("ABCL"),
42        ABORT               = internKeyword("ABORT"),
43        ABSOLUTE            = internKeyword("ABSOLUTE"),
44        ADJUSTABLE          = internKeyword("ADJUSTABLE"),
45        ALLOW_OTHER_KEYS    = internKeyword("ALLOW-OTHER-KEYS"),
46        ANSI_CL             = internKeyword("ANSI-CL"),
47        APPEND              = internKeyword("APPEND"),
48        ARMEDBEAR           = internKeyword("ARMEDBEAR"),
49        BACK                = internKeyword("BACK"),
50        BOOLEAN             = internKeyword("BOOLEAN"),
51        CAPITALIZE          = internKeyword("CAPITALIZE"),
52        CAPITALIZE_FIRST    = internKeyword("CAPITALIZE-FIRST"),
53        CASE                = internKeyword("CASE"),
54        CATCH               = internKeyword("CATCH"),
55        CAUSE               = internKeyword("CAUSE"),
56        CHAR                = internKeyword("CHAR"),
57        COMMON              = internKeyword("COMMON"),
58        COMMON_LISP         = internKeyword("COMMON-LISP"),
59        COMPILE_TOPLEVEL    = internKeyword("COMPILE-TOPLEVEL"),
60        COUNT_ONLY          = internKeyword("COUNT-ONLY"),
61        CREATE              = internKeyword("CREATE"),
62        DARWIN              = internKeyword("DARWIN"),
63        DATUM               = internKeyword("DATUM"),
64        DECLARED            = internKeyword("DECLARED"),
65        DEFAULT             = internKeyword("DEFAULT"),
66        DEFAULTS            = internKeyword("DEFAULTS"),
67        DEVICE              = internKeyword("DEVICE"),
68        DIRECTION           = internKeyword("DIRECTION"),
69        DIRECTORY           = internKeyword("DIRECTORY"),
70        DIRECT_SUPERCLASSES = internKeyword("DIRECT-SUPERCLASSES"),
71        DOWNCASE            = internKeyword("DOWNCASE"),
72        ELEMENT_TYPE        = internKeyword("ELEMENT-TYPE"),
73        END                 = internKeyword("END"),
74        ERROR               = internKeyword("ERROR"),
75        EXECUTE             = internKeyword("EXECUTE"),
76        EXPECTED_TYPE       = internKeyword("EXPECTED-TYPE"),
77        EXTERNAL            = internKeyword("EXTERNAL"),
78        EXTERNAL_FORMAT     = internKeyword("EXTERNAL-FORMAT"),
79        FILL_POINTER        = internKeyword("FILL-POINTER"),
80        FORMAT_ARGUMENTS    = internKeyword("FORMAT-ARGUMENTS"),
81        FORMAT_CONTROL      = internKeyword("FORMAT-CONTROL"),
82        FROM_END            = internKeyword("FROM-END"),
83        FREEBSD             = internKeyword("FREEBSD"),
84        HOST                = internKeyword("HOST"),
85        IF_DOES_NOT_EXIST   = internKeyword("IF-DOES-NOT-EXIST"),
86        IF_EXISTS           = internKeyword("IF-EXISTS"),
87        INHERITED           = internKeyword("INHERITED"),
88        INITIAL_CONTENTS    = internKeyword("INITIAL-CONTENTS"),
89        INITIAL_ELEMENT     = internKeyword("INITIAL-ELEMENT"),
90        INPUT               = internKeyword("INPUT"),
91        INSTANCE            = internKeyword("INSTANCE"),
92        INT                 = internKeyword("INT"),
93        INTERNAL            = internKeyword("INTERNAL"),
94        INVERT              = internKeyword("INVERT"),
95        IO                  = internKeyword("IO"),
96        J                   = internKeyword("J"),
97    // BEGIN deprecated:  use "JAVA-<n>" instead
98        JAVA_1_4            = internKeyword("JAVA-1.4"),
99        JAVA_1_5            = internKeyword("JAVA-1.5"),
100        JAVA_1_6            = internKeyword("JAVA-1.6"),
101        JAVA_1_7            = internKeyword("JAVA-1.7"),
102        JAVA_1_8            = internKeyword("JAVA-1.8"),
103        JAVA_1_9            = internKeyword("JAVA-1.9"),
104    // END deprecated
105        KEY                 = internKeyword("KEY"),
106        KEY_AND_VALUE       = internKeyword("KEY-AND-VALUE"),
107        KEY_OR_VALUE        = internKeyword("KEY-OR-VALUE"),
108        LINUX               = internKeyword("LINUX"),
109        LOAD_TOPLEVEL       = internKeyword("LOAD-TOPLEVEL"),
110        LOCAL               = internKeyword("LOCAL"),
111        LONG                = internKeyword("LONG"),
112        MOP                 = internKeyword("MOP"),
113        NAME                = internKeyword("NAME"),
114        NETBSD              = internKeyword("NETBSD"),
115        NEW_VERSION         = internKeyword("NEW"),
116        NEWEST              = internKeyword("NEWEST"),
117        NICKNAMES           = internKeyword("NICKNAMES"),
118        NONE                = internKeyword("NONE"),
119        NO_ERROR            = internKeyword("NO-ERROR"),
120        OBJECT              = internKeyword("OBJECT"),
121        OPENBSD             = internKeyword("OPENBSD"),
122        OPERANDS            = internKeyword("OPERANDS"),
123        OPERATION           = internKeyword("OPERATION"),
124        OUTPUT              = internKeyword("OUTPUT"),
125        OVERFLOW            = internKeyword("OVERFLOW"),
126        OVERWRITE           = internKeyword("OVERWRITE"),
127        PACKAGE             = internKeyword("PACKAGE"),
128        PATHNAME            = internKeyword("PATHNAME"),
129        PROBE               = internKeyword("PROBE"),
130        PREFIX              = internKeyword("PREFIX"), // EXT:MAKE-TEMP-FILE
131        PUBLIC              = internKeyword("PUBLIC"),
132        PRESERVE            = internKeyword("PRESERVE"),
133        REF                 = internKeyword("REF"),
134        RELATIVE            = internKeyword("RELATIVE"),
135        RENAME              = internKeyword("RENAME"),
136        RENAME_AND_DELETE   = internKeyword("RENAME-AND-DELETE"),
137        SIZE                = internKeyword("SIZE"),
138        SOLARIS             = internKeyword("SOLARIS"),
139        START               = internKeyword("START"),
140        STATUS              = internKeyword("STATUS"),
141        STREAM              = internKeyword("STREAM"),
142        SUNOS               = internKeyword("SUNOS"),
143        SUFFIX              = internKeyword("SUFFIX"),  // EXT:MAKE-TEMP-FILE
144        SUPERSEDE           = internKeyword("SUPERSEDE"),
145        TEST                = internKeyword("TEST"),
146        TEST_NOT            = internKeyword("TEST-NOT"),
147        TIME                = internKeyword("TIME"),
148        TOP_LEVEL           = internKeyword("TOP-LEVEL"),
149        TRAPS               = internKeyword("TRAPS"),
150        TYPE                = internKeyword("TYPE"),
151        UNDERFLOW           = internKeyword("UNDERFLOW"),
152        UNIX                = internKeyword("UNIX"),
153        UNSPECIFIC          = internKeyword("UNSPECIFIC"),
154        UP                  = internKeyword("UP"),
155        UPCASE              = internKeyword("UPCASE"),
156        USE                 = internKeyword("USE"),
157        VALUE               = internKeyword("VALUE"),
158        VERSION             = internKeyword("VERSION"),
159        WILD                = internKeyword("WILD"),
160        WILD_ERROR_P        = internKeyword("WILD-ERROR-P"),
161        WILD_INFERIORS      = internKeyword("WILD-INFERIORS"),
162        WINDOWS             = internKeyword("WINDOWS"),
163        X86                 = internKeyword("X86"),
164        X86_64              = internKeyword("X86-64"),
165        CDR6                = internKeyword("CDR6");
166}
Note: See TracBrowser for help on using the repository browser.