Initial Commit
[packages] / xemacs-packages / jde / java / src / jde / debugger / expr / ExpressionParserConstants.java
1 /* Generated By:JavaCC: Do not edit this line. ExpressionParserConstants.java */
2 package jde.debugger.expr;
3
4 public interface ExpressionParserConstants {
5
6   int EOF = 0;
7   int SINGLE_LINE_COMMENT = 6;
8   int FORMAL_COMMENT = 7;
9   int MULTI_LINE_COMMENT = 8;
10   int ABSTRACT = 9;
11   int BOOLEAN = 10;
12   int BREAK = 11;
13   int BYTE = 12;
14   int CASE = 13;
15   int CATCH = 14;
16   int CHAR = 15;
17   int CLASS = 16;
18   int CONST = 17;
19   int CONTINUE = 18;
20   int _DEFAULT = 19;
21   int DO = 20;
22   int DOUBLE = 21;
23   int ELSE = 22;
24   int EXTENDS = 23;
25   int FALSE = 24;
26   int FINAL = 25;
27   int FINALLY = 26;
28   int FLOAT = 27;
29   int FOR = 28;
30   int GOTO = 29;
31   int IF = 30;
32   int IMPLEMENTS = 31;
33   int IMPORT = 32;
34   int INSTANCEOF = 33;
35   int INT = 34;
36   int INTERFACE = 35;
37   int LONG = 36;
38   int NATIVE = 37;
39   int NEW = 38;
40   int NULL = 39;
41   int PACKAGE = 40;
42   int PRIVATE = 41;
43   int PROTECTED = 42;
44   int PUBLIC = 43;
45   int RETURN = 44;
46   int SHORT = 45;
47   int STATIC = 46;
48   int SUPER = 47;
49   int SWITCH = 48;
50   int SYNCHRONIZED = 49;
51   int THIS = 50;
52   int THROW = 51;
53   int THROWS = 52;
54   int TRANSIENT = 53;
55   int TRUE = 54;
56   int TRY = 55;
57   int VOID = 56;
58   int VOLATILE = 57;
59   int WHILE = 58;
60   int INTEGER_LITERAL = 59;
61   int DECIMAL_LITERAL = 60;
62   int HEX_LITERAL = 61;
63   int OCTAL_LITERAL = 62;
64   int FLOATING_POINT_LITERAL = 63;
65   int EXPONENT = 64;
66   int CHARACTER_LITERAL = 65;
67   int STRING_LITERAL = 66;
68   int IDENTIFIER = 67;
69   int LETTER = 68;
70   int DIGIT = 69;
71   int LPAREN = 70;
72   int RPAREN = 71;
73   int LBRACE = 72;
74   int RBRACE = 73;
75   int LBRACKET = 74;
76   int RBRACKET = 75;
77   int SEMICOLON = 76;
78   int COMMA = 77;
79   int DOT = 78;
80   int ASSIGN = 79;
81   int GT = 80;
82   int LT = 81;
83   int BANG = 82;
84   int TILDE = 83;
85   int HOOK = 84;
86   int COLON = 85;
87   int EQ = 86;
88   int LE = 87;
89   int GE = 88;
90   int NE = 89;
91   int SC_OR = 90;
92   int SC_AND = 91;
93   int INCR = 92;
94   int DECR = 93;
95   int PLUS = 94;
96   int MINUS = 95;
97   int STAR = 96;
98   int SLASH = 97;
99   int BIT_AND = 98;
100   int BIT_OR = 99;
101   int XOR = 100;
102   int REM = 101;
103   int LSHIFT = 102;
104   int RSIGNEDSHIFT = 103;
105   int RUNSIGNEDSHIFT = 104;
106   int PLUSASSIGN = 105;
107   int MINUSASSIGN = 106;
108   int STARASSIGN = 107;
109   int SLASHASSIGN = 108;
110   int ANDASSIGN = 109;
111   int ORASSIGN = 110;
112   int XORASSIGN = 111;
113   int REMASSIGN = 112;
114   int LSHIFTASSIGN = 113;
115   int RSIGNEDSHIFTASSIGN = 114;
116   int RUNSIGNEDSHIFTASSIGN = 115;
117
118   int DEFAULT = 0;
119
120   String[] tokenImage = {
121     "<EOF>",
122     "\" \"",
123     "\"\\t\"",
124     "\"\\n\"",
125     "\"\\r\"",
126     "\"\\f\"",
127     "<SINGLE_LINE_COMMENT>",
128     "<FORMAL_COMMENT>",
129     "<MULTI_LINE_COMMENT>",
130     "\"abstract\"",
131     "\"boolean\"",
132     "\"break\"",
133     "\"byte\"",
134     "\"case\"",
135     "\"catch\"",
136     "\"char\"",
137     "\"class\"",
138     "\"const\"",
139     "\"continue\"",
140     "\"default\"",
141     "\"do\"",
142     "\"double\"",
143     "\"else\"",
144     "\"extends\"",
145     "\"false\"",
146     "\"final\"",
147     "\"finally\"",
148     "\"float\"",
149     "\"for\"",
150     "\"goto\"",
151     "\"if\"",
152     "\"implements\"",
153     "\"import\"",
154     "\"instanceof\"",
155     "\"int\"",
156     "\"interface\"",
157     "\"long\"",
158     "\"native\"",
159     "\"new\"",
160     "\"null\"",
161     "\"package\"",
162     "\"private\"",
163     "\"protected\"",
164     "\"public\"",
165     "\"return\"",
166     "\"short\"",
167     "\"static\"",
168     "\"super\"",
169     "\"switch\"",
170     "\"synchronized\"",
171     "\"this\"",
172     "\"throw\"",
173     "\"throws\"",
174     "\"transient\"",
175     "\"true\"",
176     "\"try\"",
177     "\"void\"",
178     "\"volatile\"",
179     "\"while\"",
180     "<INTEGER_LITERAL>",
181     "<DECIMAL_LITERAL>",
182     "<HEX_LITERAL>",
183     "<OCTAL_LITERAL>",
184     "<FLOATING_POINT_LITERAL>",
185     "<EXPONENT>",
186     "<CHARACTER_LITERAL>",
187     "<STRING_LITERAL>",
188     "<IDENTIFIER>",
189     "<LETTER>",
190     "<DIGIT>",
191     "\"(\"",
192     "\")\"",
193     "\"{\"",
194     "\"}\"",
195     "\"[\"",
196     "\"]\"",
197     "\";\"",
198     "\",\"",
199     "\".\"",
200     "\"=\"",
201     "\">\"",
202     "\"<\"",
203     "\"!\"",
204     "\"~\"",
205     "\"?\"",
206     "\":\"",
207     "\"==\"",
208     "\"<=\"",
209     "\">=\"",
210     "\"!=\"",
211     "\"||\"",
212     "\"&&\"",
213     "\"++\"",
214     "\"--\"",
215     "\"+\"",
216     "\"-\"",
217     "\"*\"",
218     "\"/\"",
219     "\"&\"",
220     "\"|\"",
221     "\"^\"",
222     "\"%\"",
223     "\"<<\"",
224     "\">>\"",
225     "\">>>\"",
226     "\"+=\"",
227     "\"-=\"",
228     "\"*=\"",
229     "\"/=\"",
230     "\"&=\"",
231     "\"|=\"",
232     "\"^=\"",
233     "\"%=\"",
234     "\"<<=\"",
235     "\">>=\"",
236     "\">>>=\"",
237   };
238
239 }