TokenMgrError handled (no more exception on unterminated String), I now accept all...
[phpeclipse.git] / net.sourceforge.phpeclipse / src / test / PHPParserConstants.java
1 /* Generated By:JavaCC: Do not edit this line. PHPParserConstants.java */
2 package test;
3
4 public interface PHPParserConstants {
5
6   int EOF = 0;
7   int PHPSTART = 1;
8   int PHPEND = 2;
9   int SINGLE_LINE_COMMENT = 12;
10   int FORMAL_COMMENT = 13;
11   int MULTI_LINE_COMMENT = 14;
12   int CLASS = 16;
13   int FUNCTION = 17;
14   int VAR = 18;
15   int IF = 19;
16   int ELSEIF = 20;
17   int ELSE = 21;
18   int ARRAY = 22;
19   int PRINT = 23;
20   int ECHO = 24;
21   int INCLUDE = 25;
22   int REQUIRE = 26;
23   int INCLUDE_ONCE = 27;
24   int REQUIRE_ONCE = 28;
25   int GLOBAL = 29;
26   int STATIC = 30;
27   int CLASSACCESS = 31;
28   int STATICCLASSACCESS = 32;
29   int ARRAYASSIGN = 33;
30   int BREAK = 34;
31   int CASE = 35;
32   int CONST = 36;
33   int CONTINUE = 37;
34   int _DEFAULT = 38;
35   int DO = 39;
36   int EXTENDS = 40;
37   int FALSE = 41;
38   int FOR = 42;
39   int GOTO = 43;
40   int NEW = 44;
41   int NULL = 45;
42   int RETURN = 46;
43   int SUPER = 47;
44   int SWITCH = 48;
45   int THIS = 49;
46   int TRUE = 50;
47   int WHILE = 51;
48   int ENDWHILE = 52;
49   int STRING = 53;
50   int OBJECT = 54;
51   int BOOL = 55;
52   int BOOLEAN = 56;
53   int REAL = 57;
54   int DOUBLE = 58;
55   int FLOAT = 59;
56   int INT = 60;
57   int INTEGER = 61;
58   int _ORL = 62;
59   int _ANDL = 63;
60   int INTEGER_LITERAL = 64;
61   int DECIMAL_LITERAL = 65;
62   int HEX_LITERAL = 66;
63   int OCTAL_LITERAL = 67;
64   int FLOATING_POINT_LITERAL = 68;
65   int EXPONENT = 69;
66   int STRING_LITERAL = 70;
67   int STRING_1 = 71;
68   int STRING_2 = 72;
69   int STRING_3 = 73;
70   int IDENTIFIER = 74;
71   int LETTER = 75;
72   int DIGIT = 76;
73   int SPECIAL = 77;
74   int LPAREN = 78;
75   int RPAREN = 79;
76   int LBRACE = 80;
77   int RBRACE = 81;
78   int LBRACKET = 82;
79   int RBRACKET = 83;
80   int SEMICOLON = 84;
81   int COMMA = 85;
82   int DOT = 86;
83   int AT = 87;
84   int DOLLAR = 88;
85   int ASSIGN = 89;
86   int GT = 90;
87   int LT = 91;
88   int BANG = 92;
89   int HOOK = 93;
90   int COLON = 94;
91   int EQ = 95;
92   int LE = 96;
93   int GE = 97;
94   int NE = 98;
95   int SC_OR = 99;
96   int SC_AND = 100;
97   int INCR = 101;
98   int DECR = 102;
99   int PLUS = 103;
100   int MINUS = 104;
101   int STAR = 105;
102   int SLASH = 106;
103   int BIT_AND = 107;
104   int BIT_OR = 108;
105   int XOR = 109;
106   int REM = 110;
107   int LSHIFT = 111;
108   int RSIGNEDSHIFT = 112;
109   int RUNSIGNEDSHIFT = 113;
110   int PLUSASSIGN = 114;
111   int MINUSASSIGN = 115;
112   int STARASSIGN = 116;
113   int SLASHASSIGN = 117;
114   int ANDASSIGN = 118;
115   int ORASSIGN = 119;
116   int XORASSIGN = 120;
117   int DOTASSIGN = 121;
118   int REMASSIGN = 122;
119   int LSHIFTASSIGN = 123;
120   int RSIGNEDSHIFTASSIGN = 124;
121   int BANGDOUBLEEQUAL = 125;
122   int TRIPLEEQUAL = 126;
123   int TILDEEQUAL = 127;
124   int DOLLAR_ID = 128;
125
126   int DEFAULT = 0;
127   int PHPPARSING = 1;
128   int IN_SINGLE_LINE_COMMENT = 2;
129   int IN_FORMAL_COMMENT = 3;
130   int IN_MULTI_LINE_COMMENT = 4;
131
132   String[] tokenImage = {
133     "<EOF>",
134     "<PHPSTART>",
135     "\"?>\"",
136     "<token of kind 3>",
137     "\" \"",
138     "\"\\t\"",
139     "\"\\n\"",
140     "\"\\r\"",
141     "\"\\f\"",
142     "\"//\"",
143     "<token of kind 10>",
144     "\"/*\"",
145     "<SINGLE_LINE_COMMENT>",
146     "\"*/\"",
147     "\"*/\"",
148     "<token of kind 15>",
149     "\"class\"",
150     "\"function\"",
151     "\"var\"",
152     "\"if\"",
153     "\"elseif\"",
154     "\"else\"",
155     "\"array\"",
156     "\"print\"",
157     "\"echo\"",
158     "\"include\"",
159     "\"require\"",
160     "\"include_once\"",
161     "\"require_once\"",
162     "\"global\"",
163     "\"static\"",
164     "\"->\"",
165     "\"::\"",
166     "\"=>\"",
167     "\"break\"",
168     "\"case\"",
169     "\"const\"",
170     "\"continue\"",
171     "\"default\"",
172     "\"do\"",
173     "\"extends\"",
174     "\"false\"",
175     "\"for\"",
176     "\"goto\"",
177     "\"new\"",
178     "\"null\"",
179     "\"return\"",
180     "\"super\"",
181     "\"switch\"",
182     "\"this\"",
183     "\"true\"",
184     "\"while\"",
185     "\"endwhile\"",
186     "\"string\"",
187     "\"object\"",
188     "\"bool\"",
189     "\"boolean\"",
190     "\"real\"",
191     "\"double\"",
192     "\"float\"",
193     "\"int\"",
194     "\"integer\"",
195     "\"OR\"",
196     "\"AND\"",
197     "<INTEGER_LITERAL>",
198     "<DECIMAL_LITERAL>",
199     "<HEX_LITERAL>",
200     "<OCTAL_LITERAL>",
201     "<FLOATING_POINT_LITERAL>",
202     "<EXPONENT>",
203     "<STRING_LITERAL>",
204     "<STRING_1>",
205     "<STRING_2>",
206     "<STRING_3>",
207     "<IDENTIFIER>",
208     "<LETTER>",
209     "<DIGIT>",
210     "<SPECIAL>",
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     "\"/\"",
240     "\"&\"",
241     "\"|\"",
242     "\"^\"",
243     "\"%\"",
244     "\"<<\"",
245     "\">>\"",
246     "\">>>\"",
247     "\"+=\"",
248     "\"-=\"",
249     "\"*=\"",
250     "\"/=\"",
251     "\"&=\"",
252     "\"|=\"",
253     "\"^=\"",
254     "\".=\"",
255     "\"%=\"",
256     "\"<<=\"",
257     "\">>=\"",
258     "\"!==\"",
259     "\"===\"",
260     "\"~=\"",
261     "<DOLLAR_ID>",
262     "\"?>\"",
263   };
264
265 }