PageRenderTime 73ms CodeModel.GetById 23ms app.highlight 43ms RepoModel.GetById 2ms app.codeStats 0ms

/jEdit/tags/jedit-4-0-pre5/bsh/ParserConstants.java

#
Java | 253 lines | 247 code | 5 blank | 1 comment | 0 complexity | 4ad243894a5962b922d8054b9411516e MD5 | raw file
Possible License(s): BSD-3-Clause, AGPL-1.0, Apache-2.0, LGPL-2.0, LGPL-3.0, GPL-2.0, CC-BY-SA-3.0, LGPL-2.1, GPL-3.0, MPL-2.0-no-copyleft-exception, IPL-1.0
  1/* Generated By:JJTree&JavaCC: Do not edit this line. ParserConstants.java */
  2package bsh;
  3
  4public interface ParserConstants {
  5
  6  int EOF = 0;
  7  int NONPRINTABLE = 6;
  8  int SINGLE_LINE_COMMENT = 7;
  9  int HASH_BANG_COMMENT = 8;
 10  int FORMAL_COMMENT = 9;
 11  int MULTI_LINE_COMMENT = 10;
 12  int BOOLEAN = 11;
 13  int BREAK = 12;
 14  int CLASS = 13;
 15  int BYTE = 14;
 16  int CASE = 15;
 17  int CATCH = 16;
 18  int CHAR = 17;
 19  int CONST = 18;
 20  int CONTINUE = 19;
 21  int _DEFAULT = 20;
 22  int DO = 21;
 23  int DOUBLE = 22;
 24  int ELSE = 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 IMPORT = 31;
 33  int INSTANCEOF = 32;
 34  int INT = 33;
 35  int INTERFACE = 34;
 36  int LONG = 35;
 37  int NEW = 36;
 38  int NULL = 37;
 39  int PRIVATE = 38;
 40  int PROTECTED = 39;
 41  int PUBLIC = 40;
 42  int RETURN = 41;
 43  int SHORT = 42;
 44  int STATIC = 43;
 45  int SWITCH = 44;
 46  int THROW = 45;
 47  int TRUE = 46;
 48  int TRY = 47;
 49  int VOID = 48;
 50  int WHILE = 49;
 51  int INTEGER_LITERAL = 50;
 52  int DECIMAL_LITERAL = 51;
 53  int HEX_LITERAL = 52;
 54  int OCTAL_LITERAL = 53;
 55  int FLOATING_POINT_LITERAL = 54;
 56  int EXPONENT = 55;
 57  int CHARACTER_LITERAL = 56;
 58  int STRING_LITERAL = 57;
 59  int IDENTIFIER = 58;
 60  int LETTER = 59;
 61  int DIGIT = 60;
 62  int LPAREN = 61;
 63  int RPAREN = 62;
 64  int LBRACE = 63;
 65  int RBRACE = 64;
 66  int LBRACKET = 65;
 67  int RBRACKET = 66;
 68  int SEMICOLON = 67;
 69  int COMMA = 68;
 70  int DOT = 69;
 71  int ASSIGN = 70;
 72  int GT = 71;
 73  int GTX = 72;
 74  int LT = 73;
 75  int LTX = 74;
 76  int BANG = 75;
 77  int TILDE = 76;
 78  int HOOK = 77;
 79  int COLON = 78;
 80  int EQ = 79;
 81  int LE = 80;
 82  int LEX = 81;
 83  int GE = 82;
 84  int GEX = 83;
 85  int NE = 84;
 86  int BOOL_OR = 85;
 87  int BOOL_ORX = 86;
 88  int BOOL_AND = 87;
 89  int BOOL_ANDX = 88;
 90  int INCR = 89;
 91  int DECR = 90;
 92  int PLUS = 91;
 93  int MINUS = 92;
 94  int STAR = 93;
 95  int SLASH = 94;
 96  int BIT_AND = 95;
 97  int BIT_ANDX = 96;
 98  int BIT_OR = 97;
 99  int BIT_ORX = 98;
100  int XOR = 99;
101  int MOD = 100;
102  int LSHIFT = 101;
103  int LSHIFTX = 102;
104  int RSIGNEDSHIFT = 103;
105  int RSIGNEDSHIFTX = 104;
106  int RUNSIGNEDSHIFT = 105;
107  int RUNSIGNEDSHIFTX = 106;
108  int PLUSASSIGN = 107;
109  int MINUSASSIGN = 108;
110  int STARASSIGN = 109;
111  int SLASHASSIGN = 110;
112  int ANDASSIGN = 111;
113  int ANDASSIGNX = 112;
114  int ORASSIGN = 113;
115  int ORASSIGNX = 114;
116  int XORASSIGN = 115;
117  int MODASSIGN = 116;
118  int LSHIFTASSIGN = 117;
119  int LSHIFTASSIGNX = 118;
120  int RSIGNEDSHIFTASSIGN = 119;
121  int RSIGNEDSHIFTASSIGNX = 120;
122  int RUNSIGNEDSHIFTASSIGN = 121;
123  int RUNSIGNEDSHIFTASSIGNX = 122;
124
125  int DEFAULT = 0;
126
127  String[] tokenImage = {
128    "<EOF>",
129    "\" \"",
130    "\"\\t\"",
131    "\"\\r\"",
132    "\"\\f\"",
133    "\"\\n\"",
134    "<NONPRINTABLE>",
135    "<SINGLE_LINE_COMMENT>",
136    "<HASH_BANG_COMMENT>",
137    "<FORMAL_COMMENT>",
138    "<MULTI_LINE_COMMENT>",
139    "\"boolean\"",
140    "\"break\"",
141    "\"class\"",
142    "\"byte\"",
143    "\"case\"",
144    "\"catch\"",
145    "\"char\"",
146    "\"const\"",
147    "\"continue\"",
148    "\"default\"",
149    "\"do\"",
150    "\"double\"",
151    "\"else\"",
152    "\"false\"",
153    "\"final\"",
154    "\"finally\"",
155    "\"float\"",
156    "\"for\"",
157    "\"goto\"",
158    "\"if\"",
159    "\"import\"",
160    "\"instanceof\"",
161    "\"int\"",
162    "\"interface\"",
163    "\"long\"",
164    "\"new\"",
165    "\"null\"",
166    "\"private\"",
167    "\"protected\"",
168    "\"public\"",
169    "\"return\"",
170    "\"short\"",
171    "\"static\"",
172    "\"switch\"",
173    "\"throw\"",
174    "\"true\"",
175    "\"try\"",
176    "\"void\"",
177    "\"while\"",
178    "<INTEGER_LITERAL>",
179    "<DECIMAL_LITERAL>",
180    "<HEX_LITERAL>",
181    "<OCTAL_LITERAL>",
182    "<FLOATING_POINT_LITERAL>",
183    "<EXPONENT>",
184    "<CHARACTER_LITERAL>",
185    "<STRING_LITERAL>",
186    "<IDENTIFIER>",
187    "<LETTER>",
188    "<DIGIT>",
189    "\"(\"",
190    "\")\"",
191    "\"{\"",
192    "\"}\"",
193    "\"[\"",
194    "\"]\"",
195    "\";\"",
196    "\",\"",
197    "\".\"",
198    "\"=\"",
199    "\">\"",
200    "\"@gt\"",
201    "\"<\"",
202    "\"@lt\"",
203    "\"!\"",
204    "\"~\"",
205    "\"?\"",
206    "\":\"",
207    "\"==\"",
208    "\"<=\"",
209    "\"@lteq\"",
210    "\">=\"",
211    "\"@gteq\"",
212    "\"!=\"",
213    "\"||\"",
214    "\"@or\"",
215    "\"&&\"",
216    "\"@and\"",
217    "\"++\"",
218    "\"--\"",
219    "\"+\"",
220    "\"-\"",
221    "\"*\"",
222    "\"/\"",
223    "\"&\"",
224    "\"@bitwise_and\"",
225    "\"|\"",
226    "\"@bitwise_or\"",
227    "\"^\"",
228    "\"%\"",
229    "\"<<\"",
230    "\"@left_shift\"",
231    "\">>\"",
232    "\"@right_shift\"",
233    "\">>>\"",
234    "\"@right_unsigned_shift\"",
235    "\"+=\"",
236    "\"-=\"",
237    "\"*=\"",
238    "\"/=\"",
239    "\"&=\"",
240    "\"@and_assign\"",
241    "\"|=\"",
242    "\"@or_assign\"",
243    "\"^=\"",
244    "\"%=\"",
245    "\"<<=\"",
246    "\"@left_shift_assign\"",
247    "\">>=\"",
248    "\"@right_shift_assign\"",
249    "\">>>=\"",
250    "\"@right_unsigned_shift_assign\"",
251  };
252
253}